You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
198 B

  1. #ifndef _UCS2_TO_UTF8_H
  2. #define _UCS2_TO_UTF8_H
  3. int convert_ucs_to_utf8(char *input, char *output);
  4. char *convert_utf8_to_ucs2(char *input, int *real_strlen);
  5. void u8_dec(char *s, int *i);
  6. #endif