00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #import "OFString.h"
00013
00014 #define OF_UNICODE_UPPER_TABLE_SIZE 0x105
00015 #define OF_UNICODE_LOWER_TABLE_SIZE 0x105
00016 #define OF_UNICODE_CASEFOLDING_TABLE_SIZE 0x105
00017
00018 extern const of_unichar_t* const
00019 of_unicode_upper_table[OF_UNICODE_UPPER_TABLE_SIZE];
00020 extern const of_unichar_t* const
00021 of_unicode_lower_table[OF_UNICODE_LOWER_TABLE_SIZE];
00022 extern const of_unichar_t* const
00023 of_unicode_casefolding_table[OF_UNICODE_CASEFOLDING_TABLE_SIZE];