stringEncodingConverter.h 388 B

1234567891011121314151617
  1. #ifndef HAVE_STRINGENCODINGCONVERTER_H
  2. #define HAVE_STRINGENCODINGCONVERTER_H 1
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. char *convertShiftJISToUTF8(const char *in, size_t inLength);
  7. char *convertUTF8ToShiftJIS(const char *in, size_t inLength);
  8. char *convertUTF8ToShiftJISWithNCR(const char *in, size_t inLength);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif /* HAVE_STRINGENCODINGCONVERTER_H */