123456789101112131415161718192021222324252627282930313233 |
- #ifndef INTL_CONVERT_H
- #define INTL_CONVERT_H
- #include <unicode/ustring.h>
- void intl_convert_utf8_to_utf16(
- UChar** target, int* target_len,
- const char* src, int src_len,
- UErrorCode* status );
- void intl_convert_utf16_to_utf8(
- char** target, int* target_len,
- const UChar* src, int src_len,
- UErrorCode* status );
- #endif
|