summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/icu/unicode/urename.h
blob: 55625921f3c47a906b38d0544d4c74a02a29febd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
/*
*******************************************************************************
*   Copyright (C) 2002-2004, International Business Machines
*   Corporation and others.  All Rights Reserved.
*******************************************************************************
*
*   file name:  urename.h
*   encoding:   US-ASCII
*   tab size:   8 (not used)
*   indentation:4
*
*   Created by: Perl script written by Vladimir Weinstein
*
*  Contains data for renaming ICU exports.
*  Gets included by umachine.h
*
*  THIS FILE IS MACHINE-GENERATED, DON'T PLAY WITH IT IF YOU DON'T KNOW WHAT
*  YOU ARE DOING, OTHERWISE VERY BAD THINGS WILL HAPPEN!
*/

#ifndef URENAME_H
#define URENAME_H

/* Uncomment the following line to disable renaming on platforms
   that do not use Autoconf. */
/* #define U_DISABLE_RENAMING 1 */

#if !U_DISABLE_RENAMING

/* C exports renaming data */

#define T_CString_int64ToString T_CString_int64ToString_3_2
#define T_CString_integerToString T_CString_integerToString_3_2
#define T_CString_stricmp T_CString_stricmp_3_2
#define T_CString_stringToInteger T_CString_stringToInteger_3_2
#define T_CString_strnicmp T_CString_strnicmp_3_2
#define T_CString_toLowerCase T_CString_toLowerCase_3_2
#define T_CString_toUpperCase T_CString_toUpperCase_3_2
#define T_FileStream_close T_FileStream_close_3_2
#define T_FileStream_eof T_FileStream_eof_3_2
#define T_FileStream_error T_FileStream_error_3_2
#define T_FileStream_file_exists T_FileStream_file_exists_3_2
#define T_FileStream_getc T_FileStream_getc_3_2
#define T_FileStream_open T_FileStream_open_3_2
#define T_FileStream_peek T_FileStream_peek_3_2
#define T_FileStream_putc T_FileStream_putc_3_2
#define T_FileStream_read T_FileStream_read_3_2
#define T_FileStream_readLine T_FileStream_readLine_3_2
#define T_FileStream_remove T_FileStream_remove_3_2
#define T_FileStream_rewind T_FileStream_rewind_3_2
#define T_FileStream_size T_FileStream_size_3_2
#define T_FileStream_stderr T_FileStream_stderr_3_2
#define T_FileStream_stdin T_FileStream_stdin_3_2
#define T_FileStream_stdout T_FileStream_stdout_3_2
#define T_FileStream_ungetc T_FileStream_ungetc_3_2
#define T_FileStream_write T_FileStream_write_3_2
#define T_FileStream_writeLine T_FileStream_writeLine_3_2
#define UCNV_FROM_U_CALLBACK_ESCAPE UCNV_FROM_U_CALLBACK_ESCAPE_3_2
#define UCNV_FROM_U_CALLBACK_SKIP UCNV_FROM_U_CALLBACK_SKIP_3_2
#define UCNV_FROM_U_CALLBACK_STOP UCNV_FROM_U_CALLBACK_STOP_3_2
#define UCNV_FROM_U_CALLBACK_SUBSTITUTE UCNV_FROM_U_CALLBACK_SUBSTITUTE_3_2
#define UCNV_TO_U_CALLBACK_ESCAPE UCNV_TO_U_CALLBACK_ESCAPE_3_2
#define UCNV_TO_U_CALLBACK_SKIP UCNV_TO_U_CALLBACK_SKIP_3_2
#define UCNV_TO_U_CALLBACK_STOP UCNV_TO_U_CALLBACK_STOP_3_2
#define UCNV_TO_U_CALLBACK_SUBSTITUTE UCNV_TO_U_CALLBACK_SUBSTITUTE_3_2
#define UDataMemory_createNewInstance UDataMemory_createNewInstance_3_2
#define UDataMemory_init UDataMemory_init_3_2
#define UDataMemory_isLoaded UDataMemory_isLoaded_3_2
#define UDataMemory_normalizeDataPointer UDataMemory_normalizeDataPointer_3_2
#define UDataMemory_setData UDataMemory_setData_3_2
#define UDatamemory_assign UDatamemory_assign_3_2
#define _ASCIIData _ASCIIData_3_2
#define _Bocu1Data _Bocu1Data_3_2
#define _CESU8Data _CESU8Data_3_2
#define _HZData _HZData_3_2
#define _IMAPData _IMAPData_3_2
#define _ISCIIData _ISCIIData_3_2
#define _ISO2022Data _ISO2022Data_3_2
#define _LMBCSData1 _LMBCSData1_3_2
#define _LMBCSData11 _LMBCSData11_3_2
#define _LMBCSData16 _LMBCSData16_3_2
#define _LMBCSData17 _LMBCSData17_3_2
#define _LMBCSData18 _LMBCSData18_3_2
#define _LMBCSData19 _LMBCSData19_3_2
#define _LMBCSData2 _LMBCSData2_3_2
#define _LMBCSData3 _LMBCSData3_3_2
#define _LMBCSData4 _LMBCSData4_3_2
#define _LMBCSData5 _LMBCSData5_3_2
#define _LMBCSData6 _LMBCSData6_3_2
#define _LMBCSData8 _LMBCSData8_3_2
#define _Latin1Data _Latin1Data_3_2
#define _MBCSData _MBCSData_3_2
#define _SCSUData _SCSUData_3_2
#define _UTF16BEData _UTF16BEData_3_2
#define _UTF16Data _UTF16Data_3_2
#define _UTF16LEData _UTF16LEData_3_2
#define _UTF32BEData _UTF32BEData_3_2
#define _UTF32Data _UTF32Data_3_2
#define _UTF32LEData _UTF32LEData_3_2
#define _UTF7Data _UTF7Data_3_2
#define _UTF8Data _UTF8Data_3_2
#define cmemory_cleanup cmemory_cleanup_3_2
#define cmemory_inUse cmemory_inUse_3_2
#define locale_getKeywords locale_getKeywords_3_2
#define locale_get_default locale_get_default_3_2
#define locale_set_default locale_set_default_3_2
#define res_countArrayItems res_countArrayItems_3_2
#define res_findResource res_findResource_3_2
#define res_getAlias res_getAlias_3_2
#define res_getArrayItem res_getArrayItem_3_2
#define res_getBinary res_getBinary_3_2
#define res_getIntVector res_getIntVector_3_2
#define res_getResource res_getResource_3_2
#define res_getString res_getString_3_2
#define res_getTableItemByIndex res_getTableItemByIndex_3_2
#define res_getTableItemByKey res_getTableItemByKey_3_2
#define res_load res_load_3_2
#define res_unload res_unload_3_2
#define transliterator_cleanup transliterator_cleanup_3_2
#define u_UCharsToChars u_UCharsToChars_3_2
#define u_austrcpy u_austrcpy_3_2
#define u_austrncpy u_austrncpy_3_2
#define u_catclose u_catclose_3_2
#define u_catgets u_catgets_3_2
#define u_catopen u_catopen_3_2
#define u_charAge u_charAge_3_2
#define u_charDigitValue u_charDigitValue_3_2
#define u_charDirection u_charDirection_3_2
#define u_charFromName u_charFromName_3_2
#define u_charMirror u_charMirror_3_2
#define u_charName u_charName_3_2
#define u_charType u_charType_3_2
#define u_charsToUChars u_charsToUChars_3_2
#define u_cleanup u_cleanup_3_2
#define u_countChar32 u_countChar32_3_2
#define u_digit u_digit_3_2
#define u_enumCharNames u_enumCharNames_3_2
#define u_enumCharTypes u_enumCharTypes_3_2
#define u_errorName u_errorName_3_2
#define u_fclose u_fclose_3_2
#define u_feof u_feof_3_2
#define u_fflush u_fflush_3_2
#define u_fgetConverter u_fgetConverter_3_2
#define u_fgetc u_fgetc_3_2
#define u_fgetcodepage u_fgetcodepage_3_2
#define u_fgetcx u_fgetcx_3_2
#define u_fgetfile u_fgetfile_3_2
#define u_fgetlocale u_fgetlocale_3_2
#define u_fgets u_fgets_3_2
#define u_file_read u_file_read_3_2
#define u_file_write u_file_write_3_2
#define u_file_write_flush u_file_write_flush_3_2
#define u_finit u_finit_3_2
#define u_foldCase u_foldCase_3_2
#define u_fopen u_fopen_3_2
#define u_forDigit u_forDigit_3_2
#define u_formatMessage u_formatMessage_3_2
#define u_formatMessageWithError u_formatMessageWithError_3_2
#define u_fprintf u_fprintf_3_2
#define u_fprintf_u u_fprintf_u_3_2
#define u_fputc u_fputc_3_2
#define u_fputs u_fputs_3_2
#define u_frewind u_frewind_3_2
#define u_fscanf u_fscanf_3_2
#define u_fscanf_u u_fscanf_u_3_2
#define u_fsetcodepage u_fsetcodepage_3_2
#define u_fsetlocale u_fsetlocale_3_2
#define u_fsettransliterator u_fsettransliterator_3_2
#define u_fstropen u_fstropen_3_2
#define u_fungetc u_fungetc_3_2
#define u_getCombiningClass u_getCombiningClass_3_2
#define u_getDataDirectory u_getDataDirectory_3_2
#define u_getDefaultConverter u_getDefaultConverter_3_2
#define u_getFC_NFKC_Closure u_getFC_NFKC_Closure_3_2
#define u_getISOComment u_getISOComment_3_2
#define u_getIntPropertyMaxValue u_getIntPropertyMaxValue_3_2
#define u_getIntPropertyMinValue u_getIntPropertyMinValue_3_2
#define u_getIntPropertyValue u_getIntPropertyValue_3_2
#define u_getNumericValue u_getNumericValue_3_2
#define u_getPropertyEnum u_getPropertyEnum_3_2
#define u_getPropertyName u_getPropertyName_3_2
#define u_getPropertyValueEnum u_getPropertyValueEnum_3_2
#define u_getPropertyValueName u_getPropertyValueName_3_2
#define u_getUnicodeProperties u_getUnicodeProperties_3_2
#define u_getUnicodeVersion u_getUnicodeVersion_3_2
#define u_getVersion u_getVersion_3_2
#define u_growBufferFromStatic u_growBufferFromStatic_3_2
#define u_hasBinaryProperty u_hasBinaryProperty_3_2
#define u_init u_init_3_2
#define u_isIDIgnorable u_isIDIgnorable_3_2
#define u_isIDPart u_isIDPart_3_2
#define u_isIDStart u_isIDStart_3_2
#define u_isISOControl u_isISOControl_3_2
#define u_isJavaIDPart u_isJavaIDPart_3_2
#define u_isJavaIDStart u_isJavaIDStart_3_2
#define u_isJavaSpaceChar u_isJavaSpaceChar_3_2
#define u_isMirrored u_isMirrored_3_2
#define u_isUAlphabetic u_isUAlphabetic_3_2
#define u_isULowercase u_isULowercase_3_2
#define u_isUUppercase u_isUUppercase_3_2
#define u_isUWhiteSpace u_isUWhiteSpace_3_2
#define u_isWhitespace u_isWhitespace_3_2
#define u_isalnum u_isalnum_3_2
#define u_isalpha u_isalpha_3_2
#define u_isbase u_isbase_3_2
#define u_isblank u_isblank_3_2
#define u_iscntrl u_iscntrl_3_2
#define u_isdefined u_isdefined_3_2
#define u_isdigit u_isdigit_3_2
#define u_isgraph u_isgraph_3_2
#define u_islower u_islower_3_2
#define u_isprint u_isprint_3_2
#define u_ispunct u_ispunct_3_2
#define u_isspace u_isspace_3_2
#define u_istitle u_istitle_3_2
#define u_isupper u_isupper_3_2
#define u_isxdigit u_isxdigit_3_2
#define u_lengthOfIdenticalLevelRun u_lengthOfIdenticalLevelRun_3_2
#define u_locbund_close u_locbund_close_3_2
#define u_locbund_getNumberFormat u_locbund_getNumberFormat_3_2
#define u_locbund_init u_locbund_init_3_2
#define u_memcasecmp u_memcasecmp_3_2
#define u_memchr u_memchr_3_2
#define u_memchr32 u_memchr32_3_2
#define u_memcmp u_memcmp_3_2
#define u_memcmpCodePointOrder u_memcmpCodePointOrder_3_2
#define u_memcpy u_memcpy_3_2
#define u_memmove u_memmove_3_2
#define u_memrchr u_memrchr_3_2
#define u_memrchr32 u_memrchr32_3_2
#define u_memset u_memset_3_2
#define u_parseMessage u_parseMessage_3_2
#define u_parseMessageWithError u_parseMessageWithError_3_2
#define u_printf_parse u_printf_parse_3_2
#define u_releaseDefaultConverter u_releaseDefaultConverter_3_2
#define u_scanf_parse u_scanf_parse_3_2
#define u_setAtomicIncDecFunctions u_setAtomicIncDecFunctions_3_2
#define u_setDataDirectory u_setDataDirectory_3_2
#define u_setMemoryFunctions u_setMemoryFunctions_3_2
#define u_setMutexFunctions u_setMutexFunctions_3_2
#define u_shapeArabic u_shapeArabic_3_2
#define u_snprintf u_snprintf_3_2
#define u_snprintf_u u_snprintf_u_3_2
#define u_sprintf u_sprintf_3_2
#define u_sprintf_u u_sprintf_u_3_2
#define u_sscanf u_sscanf_3_2
#define u_sscanf_u u_sscanf_u_3_2
#define u_strCaseCompare u_strCaseCompare_3_2
#define u_strCompare u_strCompare_3_2
#define u_strCompareIter u_strCompareIter_3_2
#define u_strFindFirst u_strFindFirst_3_2
#define u_strFindLast u_strFindLast_3_2
#define u_strFoldCase u_strFoldCase_3_2
#define u_strFromPunycode u_strFromPunycode_3_2
#define u_strFromUTF32 u_strFromUTF32_3_2
#define u_strFromUTF8 u_strFromUTF8_3_2
#define u_strFromWCS u_strFromWCS_3_2
#define u_strHasMoreChar32Than u_strHasMoreChar32Than_3_2
#define u_strToLower u_strToLower_3_2
#define u_strToPunycode u_strToPunycode_3_2
#define u_strToTitle u_strToTitle_3_2
#define u_strToUTF32 u_strToUTF32_3_2
#define u_strToUTF8 u_strToUTF8_3_2
#define u_strToUpper u_strToUpper_3_2
#define u_strToWCS u_strToWCS_3_2
#define u_strcasecmp u_strcasecmp_3_2
#define u_strcat u_strcat_3_2
#define u_strchr u_strchr_3_2
#define u_strchr32 u_strchr32_3_2
#define u_strcmp u_strcmp_3_2
#define u_strcmpCodePointOrder u_strcmpCodePointOrder_3_2
#define u_strcmpFold u_strcmpFold_3_2
#define u_strcpy u_strcpy_3_2
#define u_strcspn u_strcspn_3_2
#define u_strlen u_strlen_3_2
#define u_strncasecmp u_strncasecmp_3_2
#define u_strncat u_strncat_3_2
#define u_strncmp u_strncmp_3_2
#define u_strncmpCodePointOrder u_strncmpCodePointOrder_3_2
#define u_strncpy u_strncpy_3_2
#define u_strpbrk u_strpbrk_3_2
#define u_strrchr u_strrchr_3_2
#define u_strrchr32 u_strrchr32_3_2
#define u_strrstr u_strrstr_3_2
#define u_strspn u_strspn_3_2
#define u_strstr u_strstr_3_2
#define u_strtok_r u_strtok_r_3_2
#define u_terminateChars u_terminateChars_3_2
#define u_terminateUChar32s u_terminateUChar32s_3_2
#define u_terminateUChars u_terminateUChars_3_2
#define u_terminateWChars u_terminateWChars_3_2
#define u_tolower u_tolower_3_2
#define u_totitle u_totitle_3_2
#define u_toupper u_toupper_3_2
#define u_uastrcpy u_uastrcpy_3_2
#define u_uastrncpy u_uastrncpy_3_2
#define u_unescape u_unescape_3_2
#define u_unescapeAt u_unescapeAt_3_2
#define u_versionFromString u_versionFromString_3_2
#define u_versionToString u_versionToString_3_2
#define u_vformatMessage u_vformatMessage_3_2
#define u_vformatMessageWithError u_vformatMessageWithError_3_2
#define u_vfprintf u_vfprintf_3_2
#define u_vfprintf_u u_vfprintf_u_3_2
#define u_vfscanf u_vfscanf_3_2
#define u_vfscanf_u u_vfscanf_u_3_2
#define u_vparseMessage u_vparseMessage_3_2
#define u_vparseMessageWithError u_vparseMessageWithError_3_2
#define u_vsnprintf u_vsnprintf_3_2
#define u_vsnprintf_u u_vsnprintf_u_3_2
#define u_vsprintf u_vsprintf_3_2
#define u_vsprintf_u u_vsprintf_u_3_2
#define u_vsscanf u_vsscanf_3_2
#define u_vsscanf_u u_vsscanf_u_3_2
#define u_writeDiff u_writeDiff_3_2
#define u_writeIdenticalLevelRun u_writeIdenticalLevelRun_3_2
#define u_writeIdenticalLevelRunTwoChars u_writeIdenticalLevelRunTwoChars_3_2
#define ubidi_close ubidi_close_3_2
#define ubidi_countRuns ubidi_countRuns_3_2
#define ubidi_getDirection ubidi_getDirection_3_2
#define ubidi_getLength ubidi_getLength_3_2
#define ubidi_getLevelAt ubidi_getLevelAt_3_2
#define ubidi_getLevels ubidi_getLevels_3_2
#define ubidi_getLogicalIndex ubidi_getLogicalIndex_3_2
#define ubidi_getLogicalMap ubidi_getLogicalMap_3_2
#define ubidi_getLogicalRun ubidi_getLogicalRun_3_2
#define ubidi_getMemory ubidi_getMemory_3_2
#define ubidi_getParaLevel ubidi_getParaLevel_3_2
#define ubidi_getRuns ubidi_getRuns_3_2
#define ubidi_getText ubidi_getText_3_2
#define ubidi_getVisualIndex ubidi_getVisualIndex_3_2
#define ubidi_getVisualMap ubidi_getVisualMap_3_2
#define ubidi_getVisualRun ubidi_getVisualRun_3_2
#define ubidi_invertMap ubidi_invertMap_3_2
#define ubidi_isInverse ubidi_isInverse_3_2
#define ubidi_open ubidi_open_3_2
#define ubidi_openSized ubidi_openSized_3_2
#define ubidi_reorderLogical ubidi_reorderLogical_3_2
#define ubidi_reorderVisual ubidi_reorderVisual_3_2
#define ubidi_setInverse ubidi_setInverse_3_2
#define ubidi_setLine ubidi_setLine_3_2
#define ubidi_setPara ubidi_setPara_3_2
#define ubidi_writeReordered ubidi_writeReordered_3_2
#define ubidi_writeReverse ubidi_writeReverse_3_2
#define ublock_getCode ublock_getCode_3_2
#define ubrk_close ubrk_close_3_2
#define ubrk_countAvailable ubrk_countAvailable_3_2
#define ubrk_current ubrk_current_3_2
#define ubrk_first ubrk_first_3_2
#define ubrk_following ubrk_following_3_2
#define ubrk_getAvailable ubrk_getAvailable_3_2
#define ubrk_getLocaleByType ubrk_getLocaleByType_3_2
#define ubrk_getRuleStatus ubrk_getRuleStatus_3_2
#define ubrk_getRuleStatusVec ubrk_getRuleStatusVec_3_2
#define ubrk_isBoundary ubrk_isBoundary_3_2
#define ubrk_last ubrk_last_3_2
#define ubrk_next ubrk_next_3_2
#define ubrk_open ubrk_open_3_2
#define ubrk_openRules ubrk_openRules_3_2
#define ubrk_preceding ubrk_preceding_3_2
#define ubrk_previous ubrk_previous_3_2
#define ubrk_safeClone ubrk_safeClone_3_2
#define ubrk_setText ubrk_setText_3_2
#define ubrk_swap ubrk_swap_3_2
#define ucal_add ucal_add_3_2
#define ucal_clear ucal_clear_3_2
#define ucal_clearField ucal_clearField_3_2
#define ucal_close ucal_close_3_2
#define ucal_countAvailable ucal_countAvailable_3_2
#define ucal_equivalentTo ucal_equivalentTo_3_2
#define ucal_get ucal_get_3_2
#define ucal_getAttribute ucal_getAttribute_3_2
#define ucal_getAvailable ucal_getAvailable_3_2
#define ucal_getDSTSavings ucal_getDSTSavings_3_2
#define ucal_getDefaultTimeZone ucal_getDefaultTimeZone_3_2
#define ucal_getLimit ucal_getLimit_3_2
#define ucal_getLocaleByType ucal_getLocaleByType_3_2
#define ucal_getMillis ucal_getMillis_3_2
#define ucal_getNow ucal_getNow_3_2
#define ucal_getTimeZoneDisplayName ucal_getTimeZoneDisplayName_3_2
#define ucal_inDaylightTime ucal_inDaylightTime_3_2
#define ucal_isSet ucal_isSet_3_2
#define ucal_open ucal_open_3_2
#define ucal_openCountryTimeZones ucal_openCountryTimeZones_3_2
#define ucal_openTimeZones ucal_openTimeZones_3_2
#define ucal_roll ucal_roll_3_2
#define ucal_set ucal_set_3_2
#define ucal_setAttribute ucal_setAttribute_3_2
#define ucal_setDate ucal_setDate_3_2
#define ucal_setDateTime ucal_setDateTime_3_2
#define ucal_setDefaultTimeZone ucal_setDefaultTimeZone_3_2
#define ucal_setMillis ucal_setMillis_3_2
#define ucal_setTimeZone ucal_setTimeZone_3_2
#define ucase_addPropertyStarts ucase_addPropertyStarts_3_2
#define ucase_close ucase_close_3_2
#define ucase_fold ucase_fold_3_2
#define ucase_getSingleton ucase_getSingleton_3_2
#define ucase_getType ucase_getType_3_2
#define ucase_getTypeOrIgnorable ucase_getTypeOrIgnorable_3_2
#define ucase_isCaseSensitive ucase_isCaseSensitive_3_2
#define ucase_isSoftDotted ucase_isSoftDotted_3_2
#define ucase_open ucase_open_3_2
#define ucase_openBinary ucase_openBinary_3_2
#define ucase_swap ucase_swap_3_2
#define ucase_toFullFolding ucase_toFullFolding_3_2
#define ucase_toFullLower ucase_toFullLower_3_2
#define ucase_toFullTitle ucase_toFullTitle_3_2
#define ucase_toFullUpper ucase_toFullUpper_3_2
#define ucase_tolower ucase_tolower_3_2
#define ucase_totitle ucase_totitle_3_2
#define ucase_toupper ucase_toupper_3_2
#define uchar_addPropertyStarts uchar_addPropertyStarts_3_2
#define uchar_getHST uchar_getHST_3_2
#define uchar_swapNames uchar_swapNames_3_2
#define ucln_common_lib_cleanup ucln_common_lib_cleanup_3_2
#define ucln_common_registerCleanup ucln_common_registerCleanup_3_2
#define ucln_i18n_registerCleanup ucln_i18n_registerCleanup_3_2
#define ucln_registerCleanup ucln_registerCleanup_3_2
#define ucmp8_close ucmp8_close_3_2
#define ucmp8_compact ucmp8_compact_3_2
#define ucmp8_expand ucmp8_expand_3_2
#define ucmp8_flattenMem ucmp8_flattenMem_3_2
#define ucmp8_getArray ucmp8_getArray_3_2
#define ucmp8_getCount ucmp8_getCount_3_2
#define ucmp8_getIndex ucmp8_getIndex_3_2
#define ucmp8_getkBlockCount ucmp8_getkBlockCount_3_2
#define ucmp8_getkUnicodeCount ucmp8_getkUnicodeCount_3_2
#define ucmp8_init ucmp8_init_3_2
#define ucmp8_initAdopt ucmp8_initAdopt_3_2
#define ucmp8_initAlias ucmp8_initAlias_3_2
#define ucmp8_initBogus ucmp8_initBogus_3_2
#define ucmp8_initFromData ucmp8_initFromData_3_2
#define ucmp8_isBogus ucmp8_isBogus_3_2
#define ucmp8_open ucmp8_open_3_2
#define ucmp8_openAdopt ucmp8_openAdopt_3_2
#define ucmp8_openAlias ucmp8_openAlias_3_2
#define ucmp8_set ucmp8_set_3_2
#define ucmp8_setRange ucmp8_setRange_3_2
#define ucnv_MBCSFromUChar32 ucnv_MBCSFromUChar32_3_2
#define ucnv_MBCSFromUnicodeWithOffsets ucnv_MBCSFromUnicodeWithOffsets_3_2
#define ucnv_MBCSGetType ucnv_MBCSGetType_3_2
#define ucnv_MBCSGetUnicodeSetForBytes ucnv_MBCSGetUnicodeSetForBytes_3_2
#define ucnv_MBCSGetUnicodeSetForUnicode ucnv_MBCSGetUnicodeSetForUnicode_3_2
#define ucnv_MBCSIsLeadByte ucnv_MBCSIsLeadByte_3_2
#define ucnv_MBCSSimpleGetNextUChar ucnv_MBCSSimpleGetNextUChar_3_2
#define ucnv_MBCSToUnicodeWithOffsets ucnv_MBCSToUnicodeWithOffsets_3_2
#define ucnv_cbFromUWriteBytes ucnv_cbFromUWriteBytes_3_2
#define ucnv_cbFromUWriteSub ucnv_cbFromUWriteSub_3_2
#define ucnv_cbFromUWriteUChars ucnv_cbFromUWriteUChars_3_2
#define ucnv_cbToUWriteSub ucnv_cbToUWriteSub_3_2
#define ucnv_cbToUWriteUChars ucnv_cbToUWriteUChars_3_2
#define ucnv_close ucnv_close_3_2
#define ucnv_compareNames ucnv_compareNames_3_2
#define ucnv_convert ucnv_convert_3_2
#define ucnv_convertEx ucnv_convertEx_3_2
#define ucnv_copyPlatformString ucnv_copyPlatformString_3_2
#define ucnv_countAliases ucnv_countAliases_3_2
#define ucnv_countAvailable ucnv_countAvailable_3_2
#define ucnv_countStandards ucnv_countStandards_3_2
#define ucnv_createAlgorithmicConverter ucnv_createAlgorithmicConverter_3_2
#define ucnv_createConverter ucnv_createConverter_3_2
#define ucnv_createConverterFromPackage ucnv_createConverterFromPackage_3_2
#define ucnv_createConverterFromSharedData ucnv_createConverterFromSharedData_3_2
#define ucnv_detectUnicodeSignature ucnv_detectUnicodeSignature_3_2
#define ucnv_extContinueMatchFromU ucnv_extContinueMatchFromU_3_2
#define ucnv_extContinueMatchToU ucnv_extContinueMatchToU_3_2
#define ucnv_extGetUnicodeSet ucnv_extGetUnicodeSet_3_2
#define ucnv_extInitialMatchFromU ucnv_extInitialMatchFromU_3_2
#define ucnv_extInitialMatchToU ucnv_extInitialMatchToU_3_2
#define ucnv_extSimpleMatchFromU ucnv_extSimpleMatchFromU_3_2
#define ucnv_extSimpleMatchToU ucnv_extSimpleMatchToU_3_2
#define ucnv_fixFileSeparator ucnv_fixFileSeparator_3_2
#define ucnv_flushCache ucnv_flushCache_3_2
#define ucnv_fromAlgorithmic ucnv_fromAlgorithmic_3_2
#define ucnv_fromUChars ucnv_fromUChars_3_2
#define ucnv_fromUWriteBytes ucnv_fromUWriteBytes_3_2
#define ucnv_fromUnicode ucnv_fromUnicode_3_2
#define ucnv_fromUnicode_UTF8 ucnv_fromUnicode_UTF8_3_2
#define ucnv_fromUnicode_UTF8_OFFSETS_LOGIC ucnv_fromUnicode_UTF8_OFFSETS_LOGIC_3_2
#define ucnv_getAlias ucnv_getAlias_3_2
#define ucnv_getAliases ucnv_getAliases_3_2
#define ucnv_getAvailableName ucnv_getAvailableName_3_2
#define ucnv_getCCSID ucnv_getCCSID_3_2
#define ucnv_getCanonicalName ucnv_getCanonicalName_3_2
#define ucnv_getCompleteUnicodeSet ucnv_getCompleteUnicodeSet_3_2
#define ucnv_getDefaultName ucnv_getDefaultName_3_2
#define ucnv_getDisplayName ucnv_getDisplayName_3_2
#define ucnv_getFromUCallBack ucnv_getFromUCallBack_3_2
#define ucnv_getInvalidChars ucnv_getInvalidChars_3_2
#define ucnv_getInvalidUChars ucnv_getInvalidUChars_3_2
#define ucnv_getMaxCharSize ucnv_getMaxCharSize_3_2
#define ucnv_getMinCharSize ucnv_getMinCharSize_3_2
#define ucnv_getName ucnv_getName_3_2
#define ucnv_getNextUChar ucnv_getNextUChar_3_2
#define ucnv_getNonSurrogateUnicodeSet ucnv_getNonSurrogateUnicodeSet_3_2
#define ucnv_getPlatform ucnv_getPlatform_3_2
#define ucnv_getStandard ucnv_getStandard_3_2
#define ucnv_getStandardName ucnv_getStandardName_3_2
#define ucnv_getStarters ucnv_getStarters_3_2
#define ucnv_getSubstChars ucnv_getSubstChars_3_2
#define ucnv_getToUCallBack ucnv_getToUCallBack_3_2
#define ucnv_getType ucnv_getType_3_2
#define ucnv_getUnicodeSet ucnv_getUnicodeSet_3_2
#define ucnv_incrementRefCount ucnv_incrementRefCount_3_2
#define ucnv_io_countAliases ucnv_io_countAliases_3_2
#define ucnv_io_countAvailableAliases ucnv_io_countAvailableAliases_3_2
#define ucnv_io_countAvailableConverters ucnv_io_countAvailableConverters_3_2
#define ucnv_io_countStandards ucnv_io_countStandards_3_2
#define ucnv_io_flushAvailableConverterCache ucnv_io_flushAvailableConverterCache_3_2
#define ucnv_io_getAlias ucnv_io_getAlias_3_2
#define ucnv_io_getAliases ucnv_io_getAliases_3_2
#define ucnv_io_getAvailableConverter ucnv_io_getAvailableConverter_3_2
#define ucnv_io_getConverterName ucnv_io_getConverterName_3_2
#define ucnv_io_getDefaultConverterName ucnv_io_getDefaultConverterName_3_2
#define ucnv_io_setDefaultConverterName ucnv_io_setDefaultConverterName_3_2
#define ucnv_io_stripASCIIForCompare ucnv_io_stripASCIIForCompare_3_2
#define ucnv_io_stripEBCDICForCompare ucnv_io_stripEBCDICForCompare_3_2
#define ucnv_isAmbiguous ucnv_isAmbiguous_3_2
#define ucnv_load ucnv_load_3_2
#define ucnv_loadSharedData ucnv_loadSharedData_3_2
#define ucnv_open ucnv_open_3_2
#define ucnv_openAllNames ucnv_openAllNames_3_2
#define ucnv_openCCSID ucnv_openCCSID_3_2
#define ucnv_openPackage ucnv_openPackage_3_2
#define ucnv_openStandardNames ucnv_openStandardNames_3_2
#define ucnv_openU ucnv_openU_3_2
#define ucnv_reset ucnv_reset_3_2
#define ucnv_resetFromUnicode ucnv_resetFromUnicode_3_2
#define ucnv_resetToUnicode ucnv_resetToUnicode_3_2
#define ucnv_safeClone ucnv_safeClone_3_2
#define ucnv_setDefaultName ucnv_setDefaultName_3_2
#define ucnv_setFallback ucnv_setFallback_3_2
#define ucnv_setFromUCallBack ucnv_setFromUCallBack_3_2
#define ucnv_setSubstChars ucnv_setSubstChars_3_2
#define ucnv_setToUCallBack ucnv_setToUCallBack_3_2
#define ucnv_swap ucnv_swap_3_2
#define ucnv_swapAliases ucnv_swapAliases_3_2
#define ucnv_toAlgorithmic ucnv_toAlgorithmic_3_2
#define ucnv_toUChars ucnv_toUChars_3_2
#define ucnv_toUWriteCodePoint ucnv_toUWriteCodePoint_3_2
#define ucnv_toUWriteUChars ucnv_toUWriteUChars_3_2
#define ucnv_toUnicode ucnv_toUnicode_3_2
#define ucnv_unload ucnv_unload_3_2
#define ucnv_unloadSharedDataIfReady ucnv_unloadSharedDataIfReady_3_2
#define ucnv_usesFallback ucnv_usesFallback_3_2
#define ucol_allocWeights ucol_allocWeights_3_2
#define ucol_assembleTailoringTable ucol_assembleTailoringTable_3_2
#define ucol_calcSortKey ucol_calcSortKey_3_2
#define ucol_calcSortKeySimpleTertiary ucol_calcSortKeySimpleTertiary_3_2
#define ucol_cloneBinary ucol_cloneBinary_3_2
#define ucol_cloneRuleData ucol_cloneRuleData_3_2
#define ucol_close ucol_close_3_2
#define ucol_closeElements ucol_closeElements_3_2
#define ucol_collatorToIdentifier ucol_collatorToIdentifier_3_2
#define ucol_countAvailable ucol_countAvailable_3_2
#define ucol_createElements ucol_createElements_3_2
#define ucol_doCE ucol_doCE_3_2
#define ucol_equal ucol_equal_3_2
#define ucol_equals ucol_equals_3_2
#define ucol_getAttribute ucol_getAttribute_3_2
#define ucol_getAttributeOrDefault ucol_getAttributeOrDefault_3_2
#define ucol_getAvailable ucol_getAvailable_3_2
#define ucol_getBound ucol_getBound_3_2
#define ucol_getCEGenerator ucol_getCEGenerator_3_2
#define ucol_getCEStrengthDifference ucol_getCEStrengthDifference_3_2
#define ucol_getContractions ucol_getContractions_3_2
#define ucol_getDisplayName ucol_getDisplayName_3_2
#define ucol_getFirstCE ucol_getFirstCE_3_2
#define ucol_getFunctionalEquivalent ucol_getFunctionalEquivalent_3_2
#define ucol_getKeywordValues ucol_getKeywordValues_3_2
#define ucol_getKeywords ucol_getKeywords_3_2
#define ucol_getLocale ucol_getLocale_3_2
#define ucol_getLocaleByType ucol_getLocaleByType_3_2
#define ucol_getMaxExpansion ucol_getMaxExpansion_3_2
#define ucol_getNextCE ucol_getNextCE_3_2
#define ucol_getNextGenerated ucol_getNextGenerated_3_2
#define ucol_getOffset ucol_getOffset_3_2
#define ucol_getPrevCE ucol_getPrevCE_3_2
#define ucol_getRules ucol_getRules_3_2
#define ucol_getRulesEx ucol_getRulesEx_3_2
#define ucol_getShortDefinitionString ucol_getShortDefinitionString_3_2
#define ucol_getSimpleCEGenerator ucol_getSimpleCEGenerator_3_2
#define ucol_getSortKey ucol_getSortKey_3_2
#define ucol_getSortKeySize ucol_getSortKeySize_3_2
#define ucol_getSortKeyWithAllocation ucol_getSortKeyWithAllocation_3_2
#define ucol_getStrength ucol_getStrength_3_2
#define ucol_getTailoredSet ucol_getTailoredSet_3_2
#define ucol_getUCAVersion ucol_getUCAVersion_3_2
#define ucol_getUnsafeSet ucol_getUnsafeSet_3_2
#define ucol_getVariableTop ucol_getVariableTop_3_2
#define ucol_getVersion ucol_getVersion_3_2
#define ucol_greater ucol_greater_3_2
#define ucol_greaterOrEqual ucol_greaterOrEqual_3_2
#define ucol_identifierToShortString ucol_identifierToShortString_3_2
#define ucol_initBuffers ucol_initBuffers_3_2
#define ucol_initCollator ucol_initCollator_3_2
#define ucol_initInverseUCA ucol_initInverseUCA_3_2
#define ucol_initUCA ucol_initUCA_3_2
#define ucol_inv_getGapPositions ucol_inv_getGapPositions_3_2
#define ucol_inv_getNextCE ucol_inv_getNextCE_3_2
#define ucol_inv_getPrevCE ucol_inv_getPrevCE_3_2
#define ucol_isTailored ucol_isTailored_3_2
#define ucol_keyHashCode ucol_keyHashCode_3_2
#define ucol_mergeSortkeys ucol_mergeSortkeys_3_2
#define ucol_next ucol_next_3_2
#define ucol_nextSortKeyPart ucol_nextSortKeyPart_3_2
#define ucol_nextWeight ucol_nextWeight_3_2
#define ucol_normalizeShortDefinitionString ucol_normalizeShortDefinitionString_3_2
#define ucol_open ucol_open_3_2
#define ucol_openAvailableLocales ucol_openAvailableLocales_3_2
#define ucol_openBinary ucol_openBinary_3_2
#define ucol_openElements ucol_openElements_3_2
#define ucol_openFromIdentifier ucol_openFromIdentifier_3_2
#define ucol_openFromShortString ucol_openFromShortString_3_2
#define ucol_openRules ucol_openRules_3_2
#define ucol_open_internal ucol_open_internal_3_2
#define ucol_previous ucol_previous_3_2
#define ucol_primaryOrder ucol_primaryOrder_3_2
#define ucol_prv_getSpecialCE ucol_prv_getSpecialCE_3_2
#define ucol_prv_getSpecialPrevCE ucol_prv_getSpecialPrevCE_3_2
#define ucol_reset ucol_reset_3_2
#define ucol_restoreVariableTop ucol_restoreVariableTop_3_2
#define ucol_safeClone ucol_safeClone_3_2
#define ucol_secondaryOrder ucol_secondaryOrder_3_2
#define ucol_setAttribute ucol_setAttribute_3_2
#define ucol_setOffset ucol_setOffset_3_2
#define ucol_setOptionsFromHeader ucol_setOptionsFromHeader_3_2
#define ucol_setReqValidLocales ucol_setReqValidLocales_3_2
#define ucol_setStrength ucol_setStrength_3_2
#define ucol_setText ucol_setText_3_2
#define ucol_setVariableTop ucol_setVariableTop_3_2
#define ucol_shortStringToIdentifier ucol_shortStringToIdentifier_3_2
#define ucol_sortKeyToString ucol_sortKeyToString_3_2
#define ucol_strcoll ucol_strcoll_3_2
#define ucol_strcollIter ucol_strcollIter_3_2
#define ucol_swap ucol_swap_3_2
#define ucol_swapBinary ucol_swapBinary_3_2
#define ucol_swapInverseUCA ucol_swapInverseUCA_3_2
#define ucol_tertiaryOrder ucol_tertiaryOrder_3_2
#define ucol_tok_assembleTokenList ucol_tok_assembleTokenList_3_2
#define ucol_tok_closeTokenList ucol_tok_closeTokenList_3_2
#define ucol_tok_getNextArgument ucol_tok_getNextArgument_3_2
#define ucol_tok_initTokenList ucol_tok_initTokenList_3_2
#define ucol_tok_parseNextToken ucol_tok_parseNextToken_3_2
#define ucol_updateInternalState ucol_updateInternalState_3_2
#define ucurr_forLocale ucurr_forLocale_3_2
#define ucurr_getDefaultFractionDigits ucurr_getDefaultFractionDigits_3_2
#define ucurr_getName ucurr_getName_3_2
#define ucurr_getRoundingIncrement ucurr_getRoundingIncrement_3_2
#define ucurr_register ucurr_register_3_2
#define ucurr_unregister ucurr_unregister_3_2
#define udat_applyPattern udat_applyPattern_3_2
#define udat_clone udat_clone_3_2
#define udat_close udat_close_3_2
#define udat_countAvailable udat_countAvailable_3_2
#define udat_countSymbols udat_countSymbols_3_2
#define udat_format udat_format_3_2
#define udat_get2DigitYearStart udat_get2DigitYearStart_3_2
#define udat_getAvailable udat_getAvailable_3_2
#define udat_getCalendar udat_getCalendar_3_2
#define udat_getLocaleByType udat_getLocaleByType_3_2
#define udat_getNumberFormat udat_getNumberFormat_3_2
#define udat_getSymbols udat_getSymbols_3_2
#define udat_isLenient udat_isLenient_3_2
#define udat_open udat_open_3_2
#define udat_parse udat_parse_3_2
#define udat_parseCalendar udat_parseCalendar_3_2
#define udat_set2DigitYearStart udat_set2DigitYearStart_3_2
#define udat_setCalendar udat_setCalendar_3_2
#define udat_setLenient udat_setLenient_3_2
#define udat_setNumberFormat udat_setNumberFormat_3_2
#define udat_setSymbols udat_setSymbols_3_2
#define udat_toPattern udat_toPattern_3_2
#define udata_checkCommonData udata_checkCommonData_3_2
#define udata_close udata_close_3_2
#define udata_closeSwapper udata_closeSwapper_3_2
#define udata_getHeaderSize udata_getHeaderSize_3_2
#define udata_getInfo udata_getInfo_3_2
#define udata_getInfoSize udata_getInfoSize_3_2
#define udata_getLength udata_getLength_3_2
#define udata_getMemory udata_getMemory_3_2
#define udata_getRawMemory udata_getRawMemory_3_2
#define udata_open udata_open_3_2
#define udata_openChoice udata_openChoice_3_2
#define udata_openSwapper udata_openSwapper_3_2
#define udata_openSwapperForInputData udata_openSwapperForInputData_3_2
#define udata_printError udata_printError_3_2
#define udata_readInt16 udata_readInt16_3_2
#define udata_readInt32 udata_readInt32_3_2
#define udata_setAppData udata_setAppData_3_2
#define udata_setCommonData udata_setCommonData_3_2
#define udata_swapDataHeader udata_swapDataHeader_3_2
#define udata_swapInvStringBlock udata_swapInvStringBlock_3_2
#define uenum_close uenum_close_3_2
#define uenum_count uenum_count_3_2
#define uenum_next uenum_next_3_2
#define uenum_nextDefault uenum_nextDefault_3_2
#define uenum_openCharStringsEnumeration uenum_openCharStringsEnumeration_3_2
#define uenum_openStringEnumeration uenum_openStringEnumeration_3_2
#define uenum_reset uenum_reset_3_2
#define uenum_unext uenum_unext_3_2
#define uenum_unextDefault uenum_unextDefault_3_2
#define ufile_close_translit ufile_close_translit_3_2
#define ufile_fill_uchar_buffer ufile_fill_uchar_buffer_3_2
#define ufile_flush_translit ufile_flush_translit_3_2
#define ufile_getch ufile_getch_3_2
#define ufile_getch32 ufile_getch32_3_2
#define ufmt_64tou ufmt_64tou_3_2
#define ufmt_defaultCPToUnicode ufmt_defaultCPToUnicode_3_2
#define ufmt_digitvalue ufmt_digitvalue_3_2
#define ufmt_isdigit ufmt_isdigit_3_2
#define ufmt_ptou ufmt_ptou_3_2
#define ufmt_uto64 ufmt_uto64_3_2
#define ufmt_utop ufmt_utop_3_2
#define uhash_close uhash_close_3_2
#define uhash_compareCaselessUnicodeString uhash_compareCaselessUnicodeString_3_2
#define uhash_compareChars uhash_compareChars_3_2
#define uhash_compareIChars uhash_compareIChars_3_2
#define uhash_compareLong uhash_compareLong_3_2
#define uhash_compareUChars uhash_compareUChars_3_2
#define uhash_compareUnicodeString uhash_compareUnicodeString_3_2
#define uhash_count uhash_count_3_2
#define uhash_deleteHashtable uhash_deleteHashtable_3_2
#define uhash_deleteUVector uhash_deleteUVector_3_2
#define uhash_deleteUnicodeString uhash_deleteUnicodeString_3_2
#define uhash_find uhash_find_3_2
#define uhash_freeBlock uhash_freeBlock_3_2
#define uhash_get uhash_get_3_2
#define uhash_geti uhash_geti_3_2
#define uhash_hashCaselessUnicodeString uhash_hashCaselessUnicodeString_3_2
#define uhash_hashChars uhash_hashChars_3_2
#define uhash_hashIChars uhash_hashIChars_3_2
#define uhash_hashLong uhash_hashLong_3_2
#define uhash_hashUChars uhash_hashUChars_3_2
#define uhash_hashUCharsN uhash_hashUCharsN_3_2
#define uhash_hashUnicodeString uhash_hashUnicodeString_3_2
#define uhash_iget uhash_iget_3_2
#define uhash_igeti uhash_igeti_3_2
#define uhash_iput uhash_iput_3_2
#define uhash_iputi uhash_iputi_3_2
#define uhash_iremove uhash_iremove_3_2
#define uhash_iremovei uhash_iremovei_3_2
#define uhash_nextElement uhash_nextElement_3_2
#define uhash_open uhash_open_3_2
#define uhash_openSize uhash_openSize_3_2
#define uhash_put uhash_put_3_2
#define uhash_puti uhash_puti_3_2
#define uhash_remove uhash_remove_3_2
#define uhash_removeAll uhash_removeAll_3_2
#define uhash_removeElement uhash_removeElement_3_2
#define uhash_removei uhash_removei_3_2
#define uhash_setKeyComparator uhash_setKeyComparator_3_2
#define uhash_setKeyDeleter uhash_setKeyDeleter_3_2
#define uhash_setKeyHasher uhash_setKeyHasher_3_2
#define uhash_setResizePolicy uhash_setResizePolicy_3_2
#define uhash_setValueDeleter uhash_setValueDeleter_3_2
#define uhash_toki uhash_toki_3_2
#define uhash_tokp uhash_tokp_3_2
#define uhst_addPropertyStarts uhst_addPropertyStarts_3_2
#define uidna_IDNToASCII uidna_IDNToASCII_3_2
#define uidna_IDNToUnicode uidna_IDNToUnicode_3_2
#define uidna_compare uidna_compare_3_2
#define uidna_toASCII uidna_toASCII_3_2
#define uidna_toUnicode uidna_toUnicode_3_2
#define uiter_current32 uiter_current32_3_2
#define uiter_getState uiter_getState_3_2
#define uiter_next32 uiter_next32_3_2
#define uiter_previous32 uiter_previous32_3_2
#define uiter_setCharacterIterator uiter_setCharacterIterator_3_2
#define uiter_setReplaceable uiter_setReplaceable_3_2
#define uiter_setState uiter_setState_3_2
#define uiter_setString uiter_setString_3_2
#define uiter_setUTF16BE uiter_setUTF16BE_3_2
#define uiter_setUTF8 uiter_setUTF8_3_2
#define uloc_acceptLanguage uloc_acceptLanguage_3_2
#define uloc_acceptLanguageFromHTTP uloc_acceptLanguageFromHTTP_3_2
#define uloc_canonicalize uloc_canonicalize_3_2
#define uloc_countAvailable uloc_countAvailable_3_2
#define uloc_getAvailable uloc_getAvailable_3_2
#define uloc_getBaseName uloc_getBaseName_3_2
#define uloc_getCountry uloc_getCountry_3_2
#define uloc_getDefault uloc_getDefault_3_2
#define uloc_getDisplayCountry uloc_getDisplayCountry_3_2
#define uloc_getDisplayKeyword uloc_getDisplayKeyword_3_2
#define uloc_getDisplayKeywordValue uloc_getDisplayKeywordValue_3_2
#define uloc_getDisplayLanguage uloc_getDisplayLanguage_3_2
#define uloc_getDisplayName uloc_getDisplayName_3_2
#define uloc_getDisplayScript uloc_getDisplayScript_3_2
#define uloc_getDisplayVariant uloc_getDisplayVariant_3_2
#define uloc_getISO3Country uloc_getISO3Country_3_2
#define uloc_getISO3Language uloc_getISO3Language_3_2
#define uloc_getISOCountries uloc_getISOCountries_3_2
#define uloc_getISOLanguages uloc_getISOLanguages_3_2
#define uloc_getKeywordValue uloc_getKeywordValue_3_2
#define uloc_getLCID uloc_getLCID_3_2
#define uloc_getLanguage uloc_getLanguage_3_2
#define uloc_getName uloc_getName_3_2
#define uloc_getParent uloc_getParent_3_2
#define uloc_getScript uloc_getScript_3_2
#define uloc_getVariant uloc_getVariant_3_2
#define uloc_openKeywordList uloc_openKeywordList_3_2
#define uloc_openKeywords uloc_openKeywords_3_2
#define uloc_setDefault uloc_setDefault_3_2
#define uloc_setKeywordValue uloc_setKeywordValue_3_2
#define ulocdata_getExemplarSet ulocdata_getExemplarSet_3_2
#define ulocdata_getMeasurementSystem ulocdata_getMeasurementSystem_3_2
#define ulocdata_getPaperSize ulocdata_getPaperSize_3_2
#define umsg_applyPattern umsg_applyPattern_3_2
#define umsg_clone umsg_clone_3_2
#define umsg_close umsg_close_3_2
#define umsg_format umsg_format_3_2
#define umsg_getLocale umsg_getLocale_3_2
#define umsg_getLocaleByType umsg_getLocaleByType_3_2
#define umsg_open umsg_open_3_2
#define umsg_parse umsg_parse_3_2
#define umsg_setLocale umsg_setLocale_3_2
#define umsg_toPattern umsg_toPattern_3_2
#define umsg_vformat umsg_vformat_3_2
#define umsg_vparse umsg_vparse_3_2
#define umtx_atomic_dec umtx_atomic_dec_3_2
#define umtx_atomic_inc umtx_atomic_inc_3_2
#define umtx_cleanup umtx_cleanup_3_2
#define umtx_destroy umtx_destroy_3_2
#define umtx_init umtx_init_3_2
#define umtx_lock umtx_lock_3_2
#define umtx_unlock umtx_unlock_3_2
#define unorm_addPropertyStarts unorm_addPropertyStarts_3_2
#define unorm_closeIter unorm_closeIter_3_2
#define unorm_compare unorm_compare_3_2
#define unorm_compose unorm_compose_3_2
#define unorm_concatenate unorm_concatenate_3_2
#define unorm_decompose unorm_decompose_3_2
#define unorm_getCanonStartSet unorm_getCanonStartSet_3_2
#define unorm_getCanonicalDecomposition unorm_getCanonicalDecomposition_3_2
#define unorm_getDecomposition unorm_getDecomposition_3_2
#define unorm_getFCD16FromCodePoint unorm_getFCD16FromCodePoint_3_2
#define unorm_getFCDTrie unorm_getFCDTrie_3_2
#define unorm_getNX unorm_getNX_3_2
#define unorm_getQuickCheck unorm_getQuickCheck_3_2
#define unorm_getUnicodeVersion unorm_getUnicodeVersion_3_2
#define unorm_haveData unorm_haveData_3_2
#define unorm_internalIsFullCompositionExclusion unorm_internalIsFullCompositionExclusion_3_2
#define unorm_internalNormalize unorm_internalNormalize_3_2
#define unorm_internalNormalizeWithNX unorm_internalNormalizeWithNX_3_2
#define unorm_internalQuickCheck unorm_internalQuickCheck_3_2
#define unorm_isCanonSafeStart unorm_isCanonSafeStart_3_2
#define unorm_isNFSkippable unorm_isNFSkippable_3_2
#define unorm_isNormalized unorm_isNormalized_3_2
#define unorm_isNormalizedWithOptions unorm_isNormalizedWithOptions_3_2
#define unorm_next unorm_next_3_2
#define unorm_normalize unorm_normalize_3_2
#define unorm_openIter unorm_openIter_3_2
#define unorm_previous unorm_previous_3_2
#define unorm_quickCheck unorm_quickCheck_3_2
#define unorm_quickCheckWithOptions unorm_quickCheckWithOptions_3_2
#define unorm_setIter unorm_setIter_3_2
#define unorm_swap unorm_swap_3_2
#define unum_applyPattern unum_applyPattern_3_2
#define unum_clone unum_clone_3_2
#define unum_close unum_close_3_2
#define unum_countAvailable unum_countAvailable_3_2
#define unum_format unum_format_3_2
#define unum_formatDouble unum_formatDouble_3_2
#define unum_formatDoubleCurrency unum_formatDoubleCurrency_3_2
#define unum_formatInt64 unum_formatInt64_3_2
#define unum_getAttribute unum_getAttribute_3_2
#define unum_getAvailable unum_getAvailable_3_2
#define unum_getDoubleAttribute unum_getDoubleAttribute_3_2
#define unum_getLocaleByType unum_getLocaleByType_3_2
#define unum_getSymbol unum_getSymbol_3_2
#define unum_getTextAttribute unum_getTextAttribute_3_2
#define unum_open unum_open_3_2
#define unum_parse unum_parse_3_2
#define unum_parseDouble unum_parseDouble_3_2
#define unum_parseDoubleCurrency unum_parseDoubleCurrency_3_2
#define unum_parseInt64 unum_parseInt64_3_2
#define unum_setAttribute unum_setAttribute_3_2
#define unum_setDoubleAttribute unum_setDoubleAttribute_3_2
#define unum_setSymbol unum_setSymbol_3_2
#define unum_setTextAttribute unum_setTextAttribute_3_2
#define unum_toPattern unum_toPattern_3_2
#define upname_swap upname_swap_3_2
#define uprops_getSource uprops_getSource_3_2
#define uprops_swap uprops_swap_3_2
#define uprv_asciiFromEbcdic uprv_asciiFromEbcdic_3_2
#define uprv_asciitolower uprv_asciitolower_3_2
#define uprv_ceil uprv_ceil_3_2
#define uprv_cnttab_addContraction uprv_cnttab_addContraction_3_2
#define uprv_cnttab_changeContraction uprv_cnttab_changeContraction_3_2
#define uprv_cnttab_changeLastCE uprv_cnttab_changeLastCE_3_2
#define uprv_cnttab_clone uprv_cnttab_clone_3_2
#define uprv_cnttab_close uprv_cnttab_close_3_2
#define uprv_cnttab_constructTable uprv_cnttab_constructTable_3_2
#define uprv_cnttab_findCE uprv_cnttab_findCE_3_2
#define uprv_cnttab_findCP uprv_cnttab_findCP_3_2
#define uprv_cnttab_getCE uprv_cnttab_getCE_3_2
#define uprv_cnttab_insertContraction uprv_cnttab_insertContraction_3_2
#define uprv_cnttab_isTailored uprv_cnttab_isTailored_3_2
#define uprv_cnttab_open uprv_cnttab_open_3_2
#define uprv_cnttab_setContraction uprv_cnttab_setContraction_3_2
#define uprv_compareASCIIPropertyNames uprv_compareASCIIPropertyNames_3_2
#define uprv_compareEBCDICPropertyNames uprv_compareEBCDICPropertyNames_3_2
#define uprv_compareInvAscii uprv_compareInvAscii_3_2
#define uprv_compareInvEbcdic uprv_compareInvEbcdic_3_2
#define uprv_convertToLCID uprv_convertToLCID_3_2
#define uprv_convertToPosix uprv_convertToPosix_3_2
#define uprv_copyAscii uprv_copyAscii_3_2
#define uprv_copyEbcdic uprv_copyEbcdic_3_2
#define uprv_dtostr uprv_dtostr_3_2
#define uprv_ebcdicFromAscii uprv_ebcdicFromAscii_3_2
#define uprv_ebcdictolower uprv_ebcdictolower_3_2
#define uprv_fabs uprv_fabs_3_2
#define uprv_floor uprv_floor_3_2
#define uprv_fmax uprv_fmax_3_2
#define uprv_fmin uprv_fmin_3_2
#define uprv_fmod uprv_fmod_3_2
#define uprv_free uprv_free_3_2
#define uprv_getCharNameCharacters uprv_getCharNameCharacters_3_2
#define uprv_getDefaultCodepage uprv_getDefaultCodepage_3_2
#define uprv_getDefaultLocaleID uprv_getDefaultLocaleID_3_2
#define uprv_getInfinity uprv_getInfinity_3_2
#define uprv_getMaxCharNameLength uprv_getMaxCharNameLength_3_2
#define uprv_getMaxValues uprv_getMaxValues_3_2
#define uprv_getNaN uprv_getNaN_3_2
#define uprv_getStaticCurrencyName uprv_getStaticCurrencyName_3_2
#define uprv_getUTCtime uprv_getUTCtime_3_2
#define uprv_haveProperties uprv_haveProperties_3_2
#define uprv_init_collIterate uprv_init_collIterate_3_2
#define uprv_int32Comparator uprv_int32Comparator_3_2
#define uprv_isInfinite uprv_isInfinite_3_2
#define uprv_isInvariantString uprv_isInvariantString_3_2
#define uprv_isInvariantUString uprv_isInvariantUString_3_2
#define uprv_isNaN uprv_isNaN_3_2
#define uprv_isNegativeInfinity uprv_isNegativeInfinity_3_2
#define uprv_isPositiveInfinity uprv_isPositiveInfinity_3_2
#define uprv_isRuleWhiteSpace uprv_isRuleWhiteSpace_3_2
#define uprv_itou uprv_itou_3_2
#define uprv_loadPropsData uprv_loadPropsData_3_2
#define uprv_log uprv_log_3_2
#define uprv_log10 uprv_log10_3_2
#define uprv_malloc uprv_malloc_3_2
#define uprv_mapFile uprv_mapFile_3_2
#define uprv_max uprv_max_3_2
#define uprv_maxMantissa uprv_maxMantissa_3_2
#define uprv_min uprv_min_3_2
#define uprv_modf uprv_modf_3_2
#define uprv_openRuleWhiteSpaceSet uprv_openRuleWhiteSpaceSet_3_2
#define uprv_pathIsAbsolute uprv_pathIsAbsolute_3_2
#define uprv_pow uprv_pow_3_2
#define uprv_pow10 uprv_pow10_3_2
#define uprv_realloc uprv_realloc_3_2
#define uprv_round uprv_round_3_2
#define uprv_sortArray uprv_sortArray_3_2
#define uprv_strCompare uprv_strCompare_3_2
#define uprv_strdup uprv_strdup_3_2
#define uprv_strndup uprv_strndup_3_2
#define uprv_syntaxError uprv_syntaxError_3_2
#define uprv_timezone uprv_timezone_3_2
#define uprv_toupper uprv_toupper_3_2
#define uprv_trunc uprv_trunc_3_2
#define uprv_tzname uprv_tzname_3_2
#define uprv_tzset uprv_tzset_3_2
#define uprv_uca_addAnElement uprv_uca_addAnElement_3_2
#define uprv_uca_assembleTable uprv_uca_assembleTable_3_2
#define uprv_uca_canonicalClosure uprv_uca_canonicalClosure_3_2
#define uprv_uca_cloneTempTable uprv_uca_cloneTempTable_3_2
#define uprv_uca_closeTempTable uprv_uca_closeTempTable_3_2
#define uprv_uca_getCodePointFromRaw uprv_uca_getCodePointFromRaw_3_2
#define uprv_uca_getImplicitFromRaw uprv_uca_getImplicitFromRaw_3_2
#define uprv_uca_getImplicitPrimary uprv_uca_getImplicitPrimary_3_2
#define uprv_uca_getRawFromCodePoint uprv_uca_getRawFromCodePoint_3_2
#define uprv_uca_getRawFromImplicit uprv_uca_getRawFromImplicit_3_2
#define uprv_uca_initImplicitConstants uprv_uca_initImplicitConstants_3_2
#define uprv_uca_initTempTable uprv_uca_initTempTable_3_2
#define uprv_uint16Comparator uprv_uint16Comparator_3_2
#define uprv_uint32Comparator uprv_uint32Comparator_3_2
#define uprv_unmapFile uprv_unmapFile_3_2
#define uregex_appendReplacement uregex_appendReplacement_3_2
#define uregex_appendTail uregex_appendTail_3_2
#define uregex_clone uregex_clone_3_2
#define uregex_close uregex_close_3_2
#define uregex_end uregex_end_3_2
#define uregex_find uregex_find_3_2
#define uregex_findNext uregex_findNext_3_2
#define uregex_flags uregex_flags_3_2
#define uregex_getText uregex_getText_3_2
#define uregex_group uregex_group_3_2
#define uregex_groupCount uregex_groupCount_3_2
#define uregex_lookingAt uregex_lookingAt_3_2
#define uregex_matches uregex_matches_3_2
#define uregex_open uregex_open_3_2
#define uregex_openC uregex_openC_3_2
#define uregex_pattern uregex_pattern_3_2
#define uregex_replaceAll uregex_replaceAll_3_2
#define uregex_replaceFirst uregex_replaceFirst_3_2
#define uregex_reset uregex_reset_3_2
#define uregex_setText uregex_setText_3_2
#define uregex_split uregex_split_3_2
#define uregex_start uregex_start_3_2
#define ures_appendResPath ures_appendResPath_3_2
#define ures_close ures_close_3_2
#define ures_copyResb ures_copyResb_3_2
#define ures_countArrayItems ures_countArrayItems_3_2
#define ures_findResource ures_findResource_3_2
#define ures_findSubResource ures_findSubResource_3_2
#define ures_freeResPath ures_freeResPath_3_2
#define ures_getBinary ures_getBinary_3_2
#define ures_getByIndex ures_getByIndex_3_2
#define ures_getByKey ures_getByKey_3_2
#define ures_getByKeyWithFallback ures_getByKeyWithFallback_3_2
#define ures_getFunctionalEquivalent ures_getFunctionalEquivalent_3_2
#define ures_getInt ures_getInt_3_2
#define ures_getIntVector ures_getIntVector_3_2
#define ures_getKey ures_getKey_3_2
#define ures_getKeywordValues ures_getKeywordValues_3_2
#define ures_getLocale ures_getLocale_3_2
#define ures_getLocaleByType ures_getLocaleByType_3_2
#define ures_getName ures_getName_3_2
#define ures_getNextResource ures_getNextResource_3_2
#define ures_getNextString ures_getNextString_3_2
#define ures_getPath ures_getPath_3_2
#define ures_getSize ures_getSize_3_2
#define ures_getString ures_getString_3_2
#define ures_getStringByIndex ures_getStringByIndex_3_2
#define ures_getStringByKey ures_getStringByKey_3_2
#define ures_getType ures_getType_3_2
#define ures_getUInt ures_getUInt_3_2
#define ures_getVersion ures_getVersion_3_2
#define ures_getVersionNumber ures_getVersionNumber_3_2
#define ures_hasNext ures_hasNext_3_2
#define ures_initStackObject ures_initStackObject_3_2
#define ures_open ures_open_3_2
#define ures_openAvailableLocales ures_openAvailableLocales_3_2
#define ures_openDirect ures_openDirect_3_2
#define ures_openFillIn ures_openFillIn_3_2
#define ures_openU ures_openU_3_2
#define ures_resetIterator ures_resetIterator_3_2
#define ures_swap ures_swap_3_2
#define uscript_closeRun uscript_closeRun_3_2
#define uscript_getCode uscript_getCode_3_2
#define uscript_getName uscript_getName_3_2
#define uscript_getScript uscript_getScript_3_2
#define uscript_getShortName uscript_getShortName_3_2
#define uscript_nextRun uscript_nextRun_3_2
#define uscript_openRun uscript_openRun_3_2
#define uscript_resetRun uscript_resetRun_3_2
#define uscript_setRunText uscript_setRunText_3_2
#define usearch_close usearch_close_3_2
#define usearch_first usearch_first_3_2
#define usearch_following usearch_following_3_2
#define usearch_getAttribute usearch_getAttribute_3_2
#define usearch_getBreakIterator usearch_getBreakIterator_3_2
#define usearch_getCollator usearch_getCollator_3_2
#define usearch_getMatchedLength usearch_getMatchedLength_3_2
#define usearch_getMatchedStart usearch_getMatchedStart_3_2
#define usearch_getMatchedText usearch_getMatchedText_3_2
#define usearch_getOffset usearch_getOffset_3_2
#define usearch_getPattern usearch_getPattern_3_2
#define usearch_getText usearch_getText_3_2
#define usearch_handleNextCanonical usearch_handleNextCanonical_3_2
#define usearch_handleNextExact usearch_handleNextExact_3_2
#define usearch_handlePreviousCanonical usearch_handlePreviousCanonical_3_2
#define usearch_handlePreviousExact usearch_handlePreviousExact_3_2
#define usearch_last usearch_last_3_2
#define usearch_next usearch_next_3_2
#define usearch_open usearch_open_3_2
#define usearch_openFromCollator usearch_openFromCollator_3_2
#define usearch_preceding usearch_preceding_3_2
#define usearch_previous usearch_previous_3_2
#define usearch_reset usearch_reset_3_2
#define usearch_setAttribute usearch_setAttribute_3_2
#define usearch_setBreakIterator usearch_setBreakIterator_3_2
#define usearch_setCollator usearch_setCollator_3_2
#define usearch_setOffset usearch_setOffset_3_2
#define usearch_setPattern usearch_setPattern_3_2
#define usearch_setText usearch_setText_3_2
#define userv_deleteStringPair userv_deleteStringPair_3_2
#define uset_add uset_add_3_2
#define uset_addAll uset_addAll_3_2
#define uset_addRange uset_addRange_3_2
#define uset_addString uset_addString_3_2
#define uset_applyIntPropertyValue uset_applyIntPropertyValue_3_2
#define uset_applyPattern uset_applyPattern_3_2
#define uset_applyPropertyAlias uset_applyPropertyAlias_3_2
#define uset_charAt uset_charAt_3_2
#define uset_clear uset_clear_3_2
#define uset_close uset_close_3_2
#define uset_compact uset_compact_3_2
#define uset_complement uset_complement_3_2
#define uset_complementAll uset_complementAll_3_2
#define uset_contains uset_contains_3_2
#define uset_containsAll uset_containsAll_3_2
#define uset_containsNone uset_containsNone_3_2
#define uset_containsRange uset_containsRange_3_2
#define uset_containsSome uset_containsSome_3_2
#define uset_containsString uset_containsString_3_2
#define uset_equals uset_equals_3_2
#define uset_getItem uset_getItem_3_2
#define uset_getItemCount uset_getItemCount_3_2
#define uset_getSerializedRange uset_getSerializedRange_3_2
#define uset_getSerializedRangeCount uset_getSerializedRangeCount_3_2
#define uset_getSerializedSet uset_getSerializedSet_3_2
#define uset_indexOf uset_indexOf_3_2
#define uset_isEmpty uset_isEmpty_3_2
#define uset_open uset_open_3_2
#define uset_openPattern uset_openPattern_3_2
#define uset_openPatternOptions uset_openPatternOptions_3_2
#define uset_remove uset_remove_3_2
#define uset_removeAll uset_removeAll_3_2
#define uset_removeRange uset_removeRange_3_2
#define uset_removeString uset_removeString_3_2
#define uset_resemblesPattern uset_resemblesPattern_3_2
#define uset_retain uset_retain_3_2
#define uset_retainAll uset_retainAll_3_2
#define uset_serialize uset_serialize_3_2
#define uset_serializedContains uset_serializedContains_3_2
#define uset_set uset_set_3_2
#define uset_setSerializedToOne uset_setSerializedToOne_3_2
#define uset_size uset_size_3_2
#define uset_toPattern uset_toPattern_3_2
#define usprep_close usprep_close_3_2
#define usprep_open usprep_open_3_2
#define usprep_prepare usprep_prepare_3_2
#define usprep_swap usprep_swap_3_2
#define ustr_foldCase ustr_foldCase_3_2
#define ustr_toLower ustr_toLower_3_2
#define ustr_toTitle ustr_toTitle_3_2
#define ustr_toUpper ustr_toUpper_3_2
#define utf8_appendCharSafeBody utf8_appendCharSafeBody_3_2
#define utf8_back1SafeBody utf8_back1SafeBody_3_2
#define utf8_countTrailBytes utf8_countTrailBytes_3_2
#define utf8_nextCharSafeBody utf8_nextCharSafeBody_3_2
#define utf8_prevCharSafeBody utf8_prevCharSafeBody_3_2
#define utmscale_fromInt64 utmscale_fromInt64_3_2
#define utmscale_getTimeScaleValue utmscale_getTimeScaleValue_3_2
#define utmscale_toInt64 utmscale_toInt64_3_2
#define utrace_cleanup utrace_cleanup_3_2
#define utrace_data utrace_data_3_2
#define utrace_entry utrace_entry_3_2
#define utrace_exit utrace_exit_3_2
#define utrace_format utrace_format_3_2
#define utrace_functionName utrace_functionName_3_2
#define utrace_getFunctions utrace_getFunctions_3_2
#define utrace_getLevel utrace_getLevel_3_2
#define utrace_level utrace_level_3_2
#define utrace_setFunctions utrace_setFunctions_3_2
#define utrace_setLevel utrace_setLevel_3_2
#define utrace_vformat utrace_vformat_3_2
#define utrans_clone utrans_clone_3_2
#define utrans_close utrans_close_3_2
#define utrans_countAvailableIDs utrans_countAvailableIDs_3_2
#define utrans_getAvailableID utrans_getAvailableID_3_2
#define utrans_getID utrans_getID_3_2
#define utrans_getUnicodeID utrans_getUnicodeID_3_2
#define utrans_open utrans_open_3_2
#define utrans_openIDs utrans_openIDs_3_2
#define utrans_openInverse utrans_openInverse_3_2
#define utrans_openU utrans_openU_3_2
#define utrans_register utrans_register_3_2
#define utrans_rep_caseContextIterator utrans_rep_caseContextIterator_3_2
#define utrans_setFilter utrans_setFilter_3_2
#define utrans_trans utrans_trans_3_2
#define utrans_transIncremental utrans_transIncremental_3_2
#define utrans_transIncrementalUChars utrans_transIncrementalUChars_3_2
#define utrans_transUChars utrans_transUChars_3_2
#define utrans_unregister utrans_unregister_3_2
#define utrans_unregisterID utrans_unregisterID_3_2
#define utrie_clone utrie_clone_3_2
#define utrie_close utrie_close_3_2
#define utrie_enum utrie_enum_3_2
#define utrie_get32 utrie_get32_3_2
#define utrie_getData utrie_getData_3_2
#define utrie_open utrie_open_3_2
#define utrie_serialize utrie_serialize_3_2
#define utrie_set32 utrie_set32_3_2
#define utrie_setRange32 utrie_setRange32_3_2
#define utrie_swap utrie_swap_3_2
#define utrie_unserialize utrie_unserialize_3_2
/* C++ class names renaming defines */

#ifdef XP_CPLUSPLUS
#if !U_HAVE_NAMESPACE

#define AbsoluteValueSubstitution AbsoluteValueSubstitution_3_2
#define AlternateSubstitutionSubtable AlternateSubstitutionSubtable_3_2
#define AnchorTable AnchorTable_3_2
#define AnyTransliterator AnyTransliterator_3_2
#define ArabicOpenTypeLayoutEngine ArabicOpenTypeLayoutEngine_3_2
#define ArabicShaping ArabicShaping_3_2
#define BasicCalendarFactory BasicCalendarFactory_3_2
#define BinarySearchLookupTable BinarySearchLookupTable_3_2
#define BreakDictionary BreakDictionary_3_2
#define BreakIterator BreakIterator_3_2
#define BuddhistCalendar BuddhistCalendar_3_2
#define CFactory CFactory_3_2
#define Calendar Calendar_3_2
#define CalendarAstronomer CalendarAstronomer_3_2
#define CalendarCache CalendarCache_3_2
#define CalendarData CalendarData_3_2
#define CalendarService CalendarService_3_2
#define CanonShaping CanonShaping_3_2
#define CanonicalIterator CanonicalIterator_3_2
#define CaseMapTransliterator CaseMapTransliterator_3_2
#define ChainingContextualSubstitutionFormat1Subtable ChainingContextualSubstitutionFormat1Subtable_3_2
#define ChainingContextualSubstitutionFormat2Subtable ChainingContextualSubstitutionFormat2Subtable_3_2
#define ChainingContextualSubstitutionFormat3Subtable ChainingContextualSubstitutionFormat3Subtable_3_2
#define ChainingContextualSubstitutionSubtable ChainingContextualSubstitutionSubtable_3_2
#define CharSubstitutionFilter CharSubstitutionFilter_3_2
#define CharacterIterator CharacterIterator_3_2
#define ChoiceFormat ChoiceFormat_3_2
#define ClassDefFormat1Table ClassDefFormat1Table_3_2
#define ClassDefFormat2Table ClassDefFormat2Table_3_2
#define ClassDefinitionTable ClassDefinitionTable_3_2
#define CollationElementIterator CollationElementIterator_3_2
#define CollationKey CollationKey_3_2
#define Collator Collator_3_2
#define CollatorFactory CollatorFactory_3_2
#define CompoundTransliterator CompoundTransliterator_3_2
#define ContextualGlyphSubstitutionProcessor ContextualGlyphSubstitutionProcessor_3_2
#define ContextualSubstitutionBase ContextualSubstitutionBase_3_2
#define ContextualSubstitutionFormat1Subtable ContextualSubstitutionFormat1Subtable_3_2
#define ContextualSubstitutionFormat2Subtable ContextualSubstitutionFormat2Subtable_3_2
#define ContextualSubstitutionFormat3Subtable ContextualSubstitutionFormat3Subtable_3_2
#define ContextualSubstitutionSubtable ContextualSubstitutionSubtable_3_2
#define CoverageFormat1Table CoverageFormat1Table_3_2
#define CoverageFormat2Table CoverageFormat2Table_3_2
#define CoverageTable CoverageTable_3_2
#define CurrencyAmount CurrencyAmount_3_2
#define CurrencyFormat CurrencyFormat_3_2
#define CurrencyUnit CurrencyUnit_3_2
#define CursiveAttachmentSubtable CursiveAttachmentSubtable_3_2
#define DateFormat DateFormat_3_2
#define DateFormatSymbols DateFormatSymbols_3_2
#define DecimalFormat DecimalFormat_3_2
#define DecimalFormatSymbols DecimalFormatSymbols_3_2
#define DefaultCalendarFactory DefaultCalendarFactory_3_2
#define DefaultCharMapper DefaultCharMapper_3_2
#define DeviceTable DeviceTable_3_2
#define DictionaryBasedBreakIterator DictionaryBasedBreakIterator_3_2
#define DictionaryBasedBreakIteratorTables DictionaryBasedBreakIteratorTables_3_2
#define DigitList DigitList_3_2
#define Entry Entry_3_2
#define EnumToOffset EnumToOffset_3_2
#define EscapeTransliterator EscapeTransliterator_3_2
#define EventListener EventListener_3_2
#define ExtensionSubtable ExtensionSubtable_3_2
#define FeatureListTable FeatureListTable_3_2
#define FieldPosition FieldPosition_3_2
#define FontRuns FontRuns_3_2
#define Format Format_3_2
#define Format1AnchorTable Format1AnchorTable_3_2
#define Format2AnchorTable Format2AnchorTable_3_2
#define Format3AnchorTable Format3AnchorTable_3_2
#define Formattable Formattable_3_2
#define ForwardCharacterIterator ForwardCharacterIterator_3_2
#define FractionalPartSubstitution FractionalPartSubstitution_3_2
#define FunctionReplacer FunctionReplacer_3_2
#define GDEFMarkFilter GDEFMarkFilter_3_2
#define GXLayoutEngine GXLayoutEngine_3_2
#define GlyphDefinitionTableHeader GlyphDefinitionTableHeader_3_2
#define GlyphIterator GlyphIterator_3_2
#define GlyphLookupTableHeader GlyphLookupTableHeader_3_2
#define GlyphPositioningLookupProcessor GlyphPositioningLookupProcessor_3_2
#define GlyphPositioningTableHeader GlyphPositioningTableHeader_3_2
#define GlyphSubstitutionLookupProcessor GlyphSubstitutionLookupProcessor_3_2
#define GlyphSubstitutionTableHeader GlyphSubstitutionTableHeader_3_2
#define Grego Grego_3_2
#define GregorianCalendar GregorianCalendar_3_2
#define HanOpenTypeLayoutEngine HanOpenTypeLayoutEngine_3_2
#define HebrewCalendar HebrewCalendar_3_2
#define ICUBreakIteratorFactory ICUBreakIteratorFactory_3_2
#define ICUBreakIteratorService ICUBreakIteratorService_3_2
#define ICUCollatorFactory ICUCollatorFactory_3_2
#define ICUCollatorService ICUCollatorService_3_2
#define ICULayoutEngine ICULayoutEngine_3_2
#define ICULocaleService ICULocaleService_3_2
#define ICUNotifier ICUNotifier_3_2
#define ICUNumberFormatFactory ICUNumberFormatFactory_3_2
#define ICUNumberFormatService ICUNumberFormatService_3_2
#define ICUResourceBundleFactory ICUResourceBundleFactory_3_2
#define ICUService ICUService_3_2
#define ICUServiceFactory ICUServiceFactory_3_2
#define ICUServiceKey ICUServiceKey_3_2
#define ICU_Utility ICU_Utility_3_2
#define IndicClassTable IndicClassTable_3_2
#define IndicOpenTypeLayoutEngine IndicOpenTypeLayoutEngine_3_2
#define IndicRearrangementProcessor IndicRearrangementProcessor_3_2
#define IndicReordering IndicReordering_3_2
#define IntegralPartSubstitution IntegralPartSubstitution_3_2
#define IslamicCalendar IslamicCalendar_3_2
#define JapaneseCalendar JapaneseCalendar_3_2
#define KeywordEnumeration KeywordEnumeration_3_2
#define LECharMapper LECharMapper_3_2
#define LEFontInstance LEFontInstance_3_2
#define LEGlyphFilter LEGlyphFilter_3_2
#define LEGlyphStorage LEGlyphStorage_3_2
#define LEInsertionCallback LEInsertionCallback_3_2
#define LEInsertionList LEInsertionList_3_2
#define LXUtilities LXUtilities_3_2
#define LayoutEngine LayoutEngine_3_2
#define LigatureSubstitutionProcessor LigatureSubstitutionProcessor_3_2
#define LigatureSubstitutionSubtable LigatureSubstitutionSubtable_3_2
#define LocDataParser LocDataParser_3_2
#define Locale Locale_3_2
#define LocaleBased LocaleBased_3_2
#define LocaleKey LocaleKey_3_2
#define LocaleKeyFactory LocaleKeyFactory_3_2
#define LocaleRuns LocaleRuns_3_2
#define LocaleUtility LocaleUtility_3_2
#define LocalizationInfo LocalizationInfo_3_2
#define LookupListTable LookupListTable_3_2
#define LookupProcessor LookupProcessor_3_2
#define LookupSubtable LookupSubtable_3_2
#define LookupTable LookupTable_3_2
#define LowercaseTransliterator LowercaseTransliterator_3_2
#define MPreFixups MPreFixups_3_2
#define MarkArray MarkArray_3_2
#define MarkToBasePositioningSubtable MarkToBasePositioningSubtable_3_2
#define MarkToLigaturePositioningSubtable MarkToLigaturePositioningSubtable_3_2
#define MarkToMarkPositioningSubtable MarkToMarkPositioningSubtable_3_2
#define Math Math_3_2
#define Measure Measure_3_2
#define MeasureFormat MeasureFormat_3_2
#define MeasureUnit MeasureUnit_3_2
#define MessageFormat MessageFormat_3_2
#define MessageFormatAdapter MessageFormatAdapter_3_2
#define ModulusSubstitution ModulusSubstitution_3_2
#define MoonRiseSetCoordFunc MoonRiseSetCoordFunc_3_2
#define MoonTimeAngleFunc MoonTimeAngleFunc_3_2
#define MorphSubtableHeader MorphSubtableHeader_3_2
#define MorphTableHeader MorphTableHeader_3_2
#define MultipleSubstitutionSubtable MultipleSubstitutionSubtable_3_2
#define MultiplierSubstitution MultiplierSubstitution_3_2
#define NFFactory NFFactory_3_2
#define NFRule NFRule_3_2
#define NFRuleSet NFRuleSet_3_2
#define NFSubstitution NFSubstitution_3_2
#define NameToEnum NameToEnum_3_2
#define NameUnicodeTransliterator NameUnicodeTransliterator_3_2
#define NonContextualGlyphSubstitutionProcessor NonContextualGlyphSubstitutionProcessor_3_2
#define NonContiguousEnumToOffset NonContiguousEnumToOffset_3_2
#define NormalizationTransliterator NormalizationTransliterator_3_2
#define Normalizer Normalizer_3_2
#define NullSubstitution NullSubstitution_3_2
#define NullTransliterator NullTransliterator_3_2
#define NumberFormat NumberFormat_3_2
#define NumberFormatFactory NumberFormatFactory_3_2
#define NumeratorSubstitution NumeratorSubstitution_3_2
#define OlsonTimeZone OlsonTimeZone_3_2
#define OpenTypeLayoutEngine OpenTypeLayoutEngine_3_2
#define OpenTypeUtilities OpenTypeUtilities_3_2
#define PairPositioningFormat1Subtable PairPositioningFormat1Subtable_3_2
#define PairPositioningFormat2Subtable PairPositioningFormat2Subtable_3_2
#define PairPositioningSubtable PairPositioningSubtable_3_2
#define ParagraphLayout ParagraphLayout_3_2
#define ParseData ParseData_3_2
#define ParsePosition ParsePosition_3_2
#define PropertyAliases PropertyAliases_3_2
#define Quantifier Quantifier_3_2
#define RBBIDataWrapper RBBIDataWrapper_3_2
#define RBBINode RBBINode_3_2
#define RBBIRuleBuilder RBBIRuleBuilder_3_2
#define RBBIRuleScanner RBBIRuleScanner_3_2
#define RBBISetBuilder RBBISetBuilder_3_2
#define RBBIStateDescriptor RBBIStateDescriptor_3_2
#define RBBISymbolTable RBBISymbolTable_3_2
#define RBBISymbolTableEntry RBBISymbolTableEntry_3_2
#define RBBITableBuilder RBBITableBuilder_3_2
#define RangeDescriptor RangeDescriptor_3_2
#define RegexCompile RegexCompile_3_2
#define RegexMatcher RegexMatcher_3_2
#define RegexPattern RegexPattern_3_2
#define RegexStaticSets RegexStaticSets_3_2
#define RemoveTransliterator RemoveTransliterator_3_2
#define Replaceable Replaceable_3_2
#define ReplaceableGlue ReplaceableGlue_3_2
#define ResourceBundle ResourceBundle_3_2
#define RiseSetCoordFunc RiseSetCoordFunc_3_2
#define RuleBasedBreakIterator RuleBasedBreakIterator_3_2
#define RuleBasedCollator RuleBasedCollator_3_2
#define RuleBasedNumberFormat RuleBasedNumberFormat_3_2
#define RuleBasedTransliterator RuleBasedTransliterator_3_2
#define RuleCharacterIterator RuleCharacterIterator_3_2
#define RuleHalf RuleHalf_3_2
#define RunArray RunArray_3_2
#define SameValueSubstitution SameValueSubstitution_3_2
#define ScriptListTable ScriptListTable_3_2
#define ScriptRunIterator ScriptRunIterator_3_2
#define ScriptTable ScriptTable_3_2
#define SearchIterator SearchIterator_3_2
#define SegmentArrayProcessor SegmentArrayProcessor_3_2
#define SegmentSingleProcessor SegmentSingleProcessor_3_2
#define ServiceEnumeration ServiceEnumeration_3_2
#define ServiceListener ServiceListener_3_2
#define SimpleArrayProcessor SimpleArrayProcessor_3_2
#define SimpleDateFormat SimpleDateFormat_3_2
#define SimpleFactory SimpleFactory_3_2
#define SimpleLocaleKeyFactory SimpleLocaleKeyFactory_3_2
#define SimpleNumberFormatFactory SimpleNumberFormatFactory_3_2
#define SimpleTimeZone SimpleTimeZone_3_2
#define SinglePositioningFormat1Subtable SinglePositioningFormat1Subtable_3_2
#define SinglePositioningFormat2Subtable SinglePositioningFormat2Subtable_3_2
#define SinglePositioningSubtable SinglePositioningSubtable_3_2
#define SingleSubstitutionFormat1Subtable SingleSubstitutionFormat1Subtable_3_2
#define SingleSubstitutionFormat2Subtable SingleSubstitutionFormat2Subtable_3_2
#define SingleSubstitutionSubtable SingleSubstitutionSubtable_3_2
#define SingleTableProcessor SingleTableProcessor_3_2
#define Spec Spec_3_2
#define StateTableProcessor StateTableProcessor_3_2
#define StringCharacterIterator StringCharacterIterator_3_2
#define StringEnumeration StringEnumeration_3_2
#define StringLocalizationInfo StringLocalizationInfo_3_2
#define StringMatcher StringMatcher_3_2
#define StringPair StringPair_3_2
#define StringReplacer StringReplacer_3_2
#define StringSearch StringSearch_3_2
#define StyleRuns StyleRuns_3_2
#define SubstitutionLookup SubstitutionLookup_3_2
#define SubtableProcessor SubtableProcessor_3_2
#define SunTimeAngleFunc SunTimeAngleFunc_3_2
#define SymbolTable SymbolTable_3_2
#define TZEnumeration TZEnumeration_3_2
#define ThaiLayoutEngine ThaiLayoutEngine_3_2
#define ThaiShaping ThaiShaping_3_2
#define TimeZone TimeZone_3_2
#define TitlecaseTransliterator TitlecaseTransliterator_3_2
#define TransliterationRule TransliterationRule_3_2
#define TransliterationRuleData TransliterationRuleData_3_2
#define TransliterationRuleSet TransliterationRuleSet_3_2
#define Transliterator Transliterator_3_2
#define TransliteratorAlias TransliteratorAlias_3_2
#define TransliteratorIDParser TransliteratorIDParser_3_2
#define TransliteratorParser TransliteratorParser_3_2
#define TransliteratorRegistry TransliteratorRegistry_3_2
#define TrimmedArrayProcessor TrimmedArrayProcessor_3_2
#define UCharCharacterIterator UCharCharacterIterator_3_2
#define UMemory UMemory_3_2
#define UObject UObject_3_2
#define UStack UStack_3_2
#define UStringEnumeration UStringEnumeration_3_2
#define UVector UVector_3_2
#define UVector32 UVector32_3_2
#define UnescapeTransliterator UnescapeTransliterator_3_2
#define UnicodeArabicOpenTypeLayoutEngine UnicodeArabicOpenTypeLayoutEngine_3_2
#define UnicodeFilter UnicodeFilter_3_2
#define UnicodeFunctor UnicodeFunctor_3_2
#define UnicodeMatcher UnicodeMatcher_3_2
#define UnicodeNameTransliterator UnicodeNameTransliterator_3_2
#define UnicodeReplacer UnicodeReplacer_3_2
#define UnicodeSet UnicodeSet_3_2
#define UnicodeSetIterator UnicodeSetIterator_3_2
#define UnicodeString UnicodeString_3_2
#define UppercaseTransliterator UppercaseTransliterator_3_2
#define ValueRecord ValueRecord_3_2
#define ValueRuns ValueRuns_3_2
#define locale_set_default_internal locale_set_default_internal_3_2
#define uprv_parseCurrency uprv_parseCurrency_3_2
#define util64_fromDouble util64_fromDouble_3_2
#define util64_pow util64_pow_3_2
#define util64_tou util64_tou_3_2
#define util64_utoi util64_utoi_3_2

#endif
#endif

#endif

#endif