49111f0092
I initially thought wchar_t was locale independent, but this seems to be only the case on Linux. This means that we cannot depend on the *wc*() routines to implement *c16*() and *c32*(). Instead, use the Citrus libiconv that is part of libc. I'll see if there is anything I can do to make the existing functions somewhat useful in case the system is built without libiconv in the nearby future. If not, I'll simply remove the broken implementations. Reviewed by: jilles, gabor
9 lines
190 B
C
9 lines
190 B
C
/* $FreeBSD$ */
|
|
#define charXX_t char32_t
|
|
#define cXXrtomb c32rtomb
|
|
#define cXXrtomb_l c32rtomb_l
|
|
#define SRCBUF_LEN 1
|
|
#define UTF_XX_INTERNAL "UTF-32-INTERNAL"
|
|
|
|
#include "cXXrtomb_iconv.h"
|