1 /* Definitions mimicking those of ICU unicode/unorm.h */
2 #ifndef UNORM_H
3 #define UNORM_NONE	1
4 #define UNORM_NFC	4
5 #define UNORM_NFD	2
6 #define UNORM_NFKC	5
7 #define UNORM_NFKD	3
8 #endif
9 
10 
11