#ifndef CFH_UNICODE_H #define CFH_UNICODE_H /* arch-tag: d275e265-e2c4-4490-8921-25a2de257fdf */ #include /* From `unicode.c': */ int utf8_mbtowc (wchar_t *p , const char *s , int n ); int utf8_mbstowcs (wchar_t *pwcs , const char *s , int n ); int utf8_wctomb (char *s , wchar_t wc , int maxlen ); int utf8_wcstombs (char *s , const wchar_t *pwcs , int maxlen ); #endif /* CFH_UNICODE_H */