utf8.h 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #ifndef __UTF8_H__ #define __UTF8_H__ //len is size in bytes //maxlen/len16 is size in U16 //len16 include terminal null \0\0 int utf8_toUcs16( U8 *utf8, int len, U16 *ucs16, int maxlen ); #endif //__UTF8_H__