blob: f4d4bcedfe95488549334213373bb1cba4ccac6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __UTF8_HH__
#define __UTF8_HH__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
int a_Utf8_encode(unsigned int ucs, char *buf);
int a_Utf8_test(const char* src, unsigned int srclen);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __UTF8_HH__ */
|