utf8.h 203 B

1234567891011121314
  1. #ifndef utf8_H_INCLUDED
  2. #define utf8_H_INCLUDED
  3. int utf8_decode_length(char * str);
  4. int utf8_decode_one(char * str, long * result);
  5. int utf8_next(char * str, char ** next, long * result);
  6. #endif