123456789101112131415161718192021222324252627282930 |
- #ifndef __STRNORMALIZE_H__
- #define __STRNORMALIZE_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define SNO_TO_LOWER 1
- #define SNO_TO_UPPER 2
- #define SNO_TO_HALF 4
- #define SNO_TO_SIMPLIFIED 8
- int utf8_to_gbk(const char *from, unsigned int from_len, char *to, unsigned int *to_len);
- #ifdef __cplusplus
- }
- #endif
- #endif
|