5bd3f677d5
X-SVN-Rev: 21927
16 lines
568 B
C
16 lines
568 B
C
#ifndef COLPROBE_H
|
|
#define COLPROBE_H
|
|
|
|
#include "unicode/uniset.h"
|
|
#include "unicode/normlzr.h"
|
|
|
|
typedef int (*CompareFn) (const void *elem1, const void *elem2);
|
|
typedef int (*GetSortKeyFn) (const UChar *string, int32_t len, uint8_t *buffer, int32_t buffCapacity);
|
|
//typedef int (__cdecl *CompareFn)(const void *elem1, const void *elem2);
|
|
void generateRepertoire(const char *locale, UnicodeSet &rep, UBool &hanAppears, UErrorCode &status);
|
|
UnicodeSet flatten(const UnicodeSet &source, UErrorCode &status);
|
|
|
|
//UnicodeSet generateRepertoire(const char *locale);
|
|
|
|
#endif
|