blob: 75615f07a72df27273de2c92b43bc63a0f90aaa0 [file] [log] [blame]
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001// © 2016 and later: Unicode, Inc. and others.
Fredrik Roubert64339d32016-10-21 19:43:16 +02002// License & terms of use: http://www.unicode.org/copyright.html
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -07003/*
4*******************************************************************************
Fredrik Roubert8de051c2016-03-10 13:13:27 +01005* Copyright (C) 2002-2016, International Business Machines
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -07006* Corporation and others. All Rights Reserved.
7*******************************************************************************
8*
9* file name: urename.h
Fredrik Roubert0596fae2017-04-18 21:34:02 +020010* encoding: UTF-8
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -070011* tab size: 8 (not used)
12* indentation:4
13*
Craig Cornelius54dcd9b2013-02-15 14:03:14 -080014* Created by: Perl script tools/genren.pl written by Vladimir Weinstein
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -070015*
16* Contains data for renaming ICU exports.
17* Gets included by umachine.h
18*
19* THIS FILE IS MACHINE-GENERATED, DON'T PLAY WITH IT IF YOU DON'T KNOW WHAT
20* YOU ARE DOING, OTHERWISE VERY BAD THINGS WILL HAPPEN!
21*/
22
23#ifndef URENAME_H
24#define URENAME_H
25
Craig Cornelius54dcd9b2013-02-15 14:03:14 -080026/* U_DISABLE_RENAMING can be defined in the following ways:
27 * - when running configure, e.g.
28 * runConfigureICU Linux --disable-renaming
29 * - by changing the default setting of U_DISABLE_RENAMING in uconfig.h
30 */
31
32#include "unicode/uconfig.h"
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -070033
34#if !U_DISABLE_RENAMING
35
Victor Chang4578a1c2018-10-22 04:26:58 +010036// Disable Renaming for Visual Studio's IntelliSense feature, so that 'Go-to-Definition' (F12) will work.
37#if !(defined(_MSC_VER) && defined(__INTELLISENSE__))
38
claireho50294ea2010-05-03 15:44:48 -070039/* We need the U_ICU_ENTRY_POINT_RENAME definition. There's a default one in unicode/uvernum.h we can use, but we will give
40 the platform a chance to define it first.
41 Normally (if utypes.h or umachine.h was included first) this will not be necessary as it will already be defined.
42 */
Craig Cornelius103e9ff2012-10-09 17:03:29 -070043
44#ifndef U_ICU_ENTRY_POINT_RENAME
claireho50294ea2010-05-03 15:44:48 -070045#include "unicode/umachine.h"
46#endif
47
48/* If we still don't have U_ICU_ENTRY_POINT_RENAME use the default. */
49#ifndef U_ICU_ENTRY_POINT_RENAME
50#include "unicode/uvernum.h"
51#endif
52
53/* Error out before the following defines cause very strange and unexpected code breakage */
54#ifndef U_ICU_ENTRY_POINT_RENAME
55#error U_ICU_ENTRY_POINT_RENAME is not defined - cannot continue. Consider defining U_DISABLE_RENAMING if renaming should not be used.
56#endif
57
58
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -070059/* C exports renaming data */
60
claireho50294ea2010-05-03 15:44:48 -070061#define T_CString_int64ToString U_ICU_ENTRY_POINT_RENAME(T_CString_int64ToString)
62#define T_CString_integerToString U_ICU_ENTRY_POINT_RENAME(T_CString_integerToString)
claireho50294ea2010-05-03 15:44:48 -070063#define T_CString_stringToInteger U_ICU_ENTRY_POINT_RENAME(T_CString_stringToInteger)
claireho50294ea2010-05-03 15:44:48 -070064#define T_CString_toLowerCase U_ICU_ENTRY_POINT_RENAME(T_CString_toLowerCase)
65#define T_CString_toUpperCase U_ICU_ENTRY_POINT_RENAME(T_CString_toUpperCase)
66#define UCNV_FROM_U_CALLBACK_ESCAPE U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_ESCAPE)
67#define UCNV_FROM_U_CALLBACK_SKIP U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_SKIP)
68#define UCNV_FROM_U_CALLBACK_STOP U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_STOP)
69#define UCNV_FROM_U_CALLBACK_SUBSTITUTE U_ICU_ENTRY_POINT_RENAME(UCNV_FROM_U_CALLBACK_SUBSTITUTE)
70#define UCNV_TO_U_CALLBACK_ESCAPE U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_ESCAPE)
71#define UCNV_TO_U_CALLBACK_SKIP U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_SKIP)
72#define UCNV_TO_U_CALLBACK_STOP U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_STOP)
73#define UCNV_TO_U_CALLBACK_SUBSTITUTE U_ICU_ENTRY_POINT_RENAME(UCNV_TO_U_CALLBACK_SUBSTITUTE)
74#define UDataMemory_createNewInstance U_ICU_ENTRY_POINT_RENAME(UDataMemory_createNewInstance)
75#define UDataMemory_init U_ICU_ENTRY_POINT_RENAME(UDataMemory_init)
76#define UDataMemory_isLoaded U_ICU_ENTRY_POINT_RENAME(UDataMemory_isLoaded)
77#define UDataMemory_normalizeDataPointer U_ICU_ENTRY_POINT_RENAME(UDataMemory_normalizeDataPointer)
78#define UDataMemory_setData U_ICU_ENTRY_POINT_RENAME(UDataMemory_setData)
79#define UDatamemory_assign U_ICU_ENTRY_POINT_RENAME(UDatamemory_assign)
80#define _ASCIIData U_ICU_ENTRY_POINT_RENAME(_ASCIIData)
81#define _Bocu1Data U_ICU_ENTRY_POINT_RENAME(_Bocu1Data)
82#define _CESU8Data U_ICU_ENTRY_POINT_RENAME(_CESU8Data)
clairehob26ce3a2012-01-10 17:54:41 -080083#define _CompoundTextData U_ICU_ENTRY_POINT_RENAME(_CompoundTextData)
claireho50294ea2010-05-03 15:44:48 -070084#define _HZData U_ICU_ENTRY_POINT_RENAME(_HZData)
85#define _IMAPData U_ICU_ENTRY_POINT_RENAME(_IMAPData)
86#define _ISCIIData U_ICU_ENTRY_POINT_RENAME(_ISCIIData)
87#define _ISO2022Data U_ICU_ENTRY_POINT_RENAME(_ISO2022Data)
88#define _LMBCSData1 U_ICU_ENTRY_POINT_RENAME(_LMBCSData1)
89#define _LMBCSData11 U_ICU_ENTRY_POINT_RENAME(_LMBCSData11)
90#define _LMBCSData16 U_ICU_ENTRY_POINT_RENAME(_LMBCSData16)
91#define _LMBCSData17 U_ICU_ENTRY_POINT_RENAME(_LMBCSData17)
92#define _LMBCSData18 U_ICU_ENTRY_POINT_RENAME(_LMBCSData18)
93#define _LMBCSData19 U_ICU_ENTRY_POINT_RENAME(_LMBCSData19)
94#define _LMBCSData2 U_ICU_ENTRY_POINT_RENAME(_LMBCSData2)
95#define _LMBCSData3 U_ICU_ENTRY_POINT_RENAME(_LMBCSData3)
96#define _LMBCSData4 U_ICU_ENTRY_POINT_RENAME(_LMBCSData4)
97#define _LMBCSData5 U_ICU_ENTRY_POINT_RENAME(_LMBCSData5)
98#define _LMBCSData6 U_ICU_ENTRY_POINT_RENAME(_LMBCSData6)
99#define _LMBCSData8 U_ICU_ENTRY_POINT_RENAME(_LMBCSData8)
100#define _Latin1Data U_ICU_ENTRY_POINT_RENAME(_Latin1Data)
101#define _MBCSData U_ICU_ENTRY_POINT_RENAME(_MBCSData)
102#define _SCSUData U_ICU_ENTRY_POINT_RENAME(_SCSUData)
103#define _UTF16BEData U_ICU_ENTRY_POINT_RENAME(_UTF16BEData)
104#define _UTF16Data U_ICU_ENTRY_POINT_RENAME(_UTF16Data)
105#define _UTF16LEData U_ICU_ENTRY_POINT_RENAME(_UTF16LEData)
Fredrik Roubert0596fae2017-04-18 21:34:02 +0200106#define _UTF16v2Data U_ICU_ENTRY_POINT_RENAME(_UTF16v2Data)
claireho50294ea2010-05-03 15:44:48 -0700107#define _UTF32BEData U_ICU_ENTRY_POINT_RENAME(_UTF32BEData)
108#define _UTF32Data U_ICU_ENTRY_POINT_RENAME(_UTF32Data)
109#define _UTF32LEData U_ICU_ENTRY_POINT_RENAME(_UTF32LEData)
110#define _UTF7Data U_ICU_ENTRY_POINT_RENAME(_UTF7Data)
111#define _UTF8Data U_ICU_ENTRY_POINT_RENAME(_UTF8Data)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100112#define _isUnicodeLocaleTypeSubtag U_ICU_ENTRY_POINT_RENAME(_isUnicodeLocaleTypeSubtag)
Fredrik Roubert0596fae2017-04-18 21:34:02 +0200113#define allowedHourFormatsCleanup U_ICU_ENTRY_POINT_RENAME(allowedHourFormatsCleanup)
claireho50294ea2010-05-03 15:44:48 -0700114#define cmemory_cleanup U_ICU_ENTRY_POINT_RENAME(cmemory_cleanup)
Fredrik Roubert0596fae2017-04-18 21:34:02 +0200115#define dayPeriodRulesCleanup U_ICU_ENTRY_POINT_RENAME(dayPeriodRulesCleanup)
116#define deleteAllowedHourFormats U_ICU_ENTRY_POINT_RENAME(deleteAllowedHourFormats)
ccorneliusf9878a22014-11-20 18:09:39 -0800117#define gTimeZoneFilesInitOnce U_ICU_ENTRY_POINT_RENAME(gTimeZoneFilesInitOnce)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100118#define initNumsysNames U_ICU_ENTRY_POINT_RENAME(initNumsysNames)
claireho50294ea2010-05-03 15:44:48 -0700119#define izrule_clone U_ICU_ENTRY_POINT_RENAME(izrule_clone)
120#define izrule_close U_ICU_ENTRY_POINT_RENAME(izrule_close)
121#define izrule_equals U_ICU_ENTRY_POINT_RENAME(izrule_equals)
122#define izrule_getDSTSavings U_ICU_ENTRY_POINT_RENAME(izrule_getDSTSavings)
123#define izrule_getDynamicClassID U_ICU_ENTRY_POINT_RENAME(izrule_getDynamicClassID)
124#define izrule_getFinalStart U_ICU_ENTRY_POINT_RENAME(izrule_getFinalStart)
125#define izrule_getFirstStart U_ICU_ENTRY_POINT_RENAME(izrule_getFirstStart)
126#define izrule_getName U_ICU_ENTRY_POINT_RENAME(izrule_getName)
127#define izrule_getNextStart U_ICU_ENTRY_POINT_RENAME(izrule_getNextStart)
128#define izrule_getPreviousStart U_ICU_ENTRY_POINT_RENAME(izrule_getPreviousStart)
129#define izrule_getRawOffset U_ICU_ENTRY_POINT_RENAME(izrule_getRawOffset)
130#define izrule_getStaticClassID U_ICU_ENTRY_POINT_RENAME(izrule_getStaticClassID)
131#define izrule_isEquivalentTo U_ICU_ENTRY_POINT_RENAME(izrule_isEquivalentTo)
132#define izrule_open U_ICU_ENTRY_POINT_RENAME(izrule_open)
claireho27f65472011-06-09 11:11:49 -0700133#define locale_getKeywordsStart U_ICU_ENTRY_POINT_RENAME(locale_getKeywordsStart)
claireho50294ea2010-05-03 15:44:48 -0700134#define locale_get_default U_ICU_ENTRY_POINT_RENAME(locale_get_default)
135#define locale_set_default U_ICU_ENTRY_POINT_RENAME(locale_set_default)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100136#define numSysCleanup U_ICU_ENTRY_POINT_RENAME(numSysCleanup)
Victor Chang82493902020-12-23 17:27:56 +0000137#define rbbi_cleanup U_ICU_ENTRY_POINT_RENAME(rbbi_cleanup)
claireho50294ea2010-05-03 15:44:48 -0700138#define pl_addFontRun U_ICU_ENTRY_POINT_RENAME(pl_addFontRun)
139#define pl_addLocaleRun U_ICU_ENTRY_POINT_RENAME(pl_addLocaleRun)
140#define pl_addValueRun U_ICU_ENTRY_POINT_RENAME(pl_addValueRun)
141#define pl_close U_ICU_ENTRY_POINT_RENAME(pl_close)
142#define pl_closeFontRuns U_ICU_ENTRY_POINT_RENAME(pl_closeFontRuns)
143#define pl_closeLine U_ICU_ENTRY_POINT_RENAME(pl_closeLine)
144#define pl_closeLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_closeLocaleRuns)
145#define pl_closeValueRuns U_ICU_ENTRY_POINT_RENAME(pl_closeValueRuns)
146#define pl_countLineRuns U_ICU_ENTRY_POINT_RENAME(pl_countLineRuns)
147#define pl_create U_ICU_ENTRY_POINT_RENAME(pl_create)
148#define pl_getAscent U_ICU_ENTRY_POINT_RENAME(pl_getAscent)
149#define pl_getDescent U_ICU_ENTRY_POINT_RENAME(pl_getDescent)
150#define pl_getFontRunCount U_ICU_ENTRY_POINT_RENAME(pl_getFontRunCount)
151#define pl_getFontRunFont U_ICU_ENTRY_POINT_RENAME(pl_getFontRunFont)
152#define pl_getFontRunLastLimit U_ICU_ENTRY_POINT_RENAME(pl_getFontRunLastLimit)
153#define pl_getFontRunLimit U_ICU_ENTRY_POINT_RENAME(pl_getFontRunLimit)
154#define pl_getLeading U_ICU_ENTRY_POINT_RENAME(pl_getLeading)
155#define pl_getLineAscent U_ICU_ENTRY_POINT_RENAME(pl_getLineAscent)
156#define pl_getLineDescent U_ICU_ENTRY_POINT_RENAME(pl_getLineDescent)
157#define pl_getLineLeading U_ICU_ENTRY_POINT_RENAME(pl_getLineLeading)
158#define pl_getLineVisualRun U_ICU_ENTRY_POINT_RENAME(pl_getLineVisualRun)
159#define pl_getLineWidth U_ICU_ENTRY_POINT_RENAME(pl_getLineWidth)
160#define pl_getLocaleRunCount U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunCount)
161#define pl_getLocaleRunLastLimit U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunLastLimit)
162#define pl_getLocaleRunLimit U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunLimit)
163#define pl_getLocaleRunLocale U_ICU_ENTRY_POINT_RENAME(pl_getLocaleRunLocale)
164#define pl_getParagraphLevel U_ICU_ENTRY_POINT_RENAME(pl_getParagraphLevel)
165#define pl_getTextDirection U_ICU_ENTRY_POINT_RENAME(pl_getTextDirection)
166#define pl_getValueRunCount U_ICU_ENTRY_POINT_RENAME(pl_getValueRunCount)
167#define pl_getValueRunLastLimit U_ICU_ENTRY_POINT_RENAME(pl_getValueRunLastLimit)
168#define pl_getValueRunLimit U_ICU_ENTRY_POINT_RENAME(pl_getValueRunLimit)
169#define pl_getValueRunValue U_ICU_ENTRY_POINT_RENAME(pl_getValueRunValue)
170#define pl_getVisualRunAscent U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunAscent)
171#define pl_getVisualRunDescent U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunDescent)
172#define pl_getVisualRunDirection U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunDirection)
173#define pl_getVisualRunFont U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunFont)
174#define pl_getVisualRunGlyphCount U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunGlyphCount)
175#define pl_getVisualRunGlyphToCharMap U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunGlyphToCharMap)
176#define pl_getVisualRunGlyphs U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunGlyphs)
177#define pl_getVisualRunLeading U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunLeading)
178#define pl_getVisualRunPositions U_ICU_ENTRY_POINT_RENAME(pl_getVisualRunPositions)
179#define pl_isComplex U_ICU_ENTRY_POINT_RENAME(pl_isComplex)
180#define pl_nextLine U_ICU_ENTRY_POINT_RENAME(pl_nextLine)
181#define pl_openEmptyFontRuns U_ICU_ENTRY_POINT_RENAME(pl_openEmptyFontRuns)
182#define pl_openEmptyLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_openEmptyLocaleRuns)
183#define pl_openEmptyValueRuns U_ICU_ENTRY_POINT_RENAME(pl_openEmptyValueRuns)
184#define pl_openFontRuns U_ICU_ENTRY_POINT_RENAME(pl_openFontRuns)
185#define pl_openLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_openLocaleRuns)
186#define pl_openValueRuns U_ICU_ENTRY_POINT_RENAME(pl_openValueRuns)
187#define pl_reflow U_ICU_ENTRY_POINT_RENAME(pl_reflow)
188#define pl_resetFontRuns U_ICU_ENTRY_POINT_RENAME(pl_resetFontRuns)
189#define pl_resetLocaleRuns U_ICU_ENTRY_POINT_RENAME(pl_resetLocaleRuns)
190#define pl_resetValueRuns U_ICU_ENTRY_POINT_RENAME(pl_resetValueRuns)
191#define res_countArrayItems U_ICU_ENTRY_POINT_RENAME(res_countArrayItems)
192#define res_findResource U_ICU_ENTRY_POINT_RENAME(res_findResource)
193#define res_getAlias U_ICU_ENTRY_POINT_RENAME(res_getAlias)
194#define res_getArrayItem U_ICU_ENTRY_POINT_RENAME(res_getArrayItem)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +0000195#define res_getBinaryNoTrace U_ICU_ENTRY_POINT_RENAME(res_getBinaryNoTrace)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +0000196#define res_getIntVectorNoTrace U_ICU_ENTRY_POINT_RENAME(res_getIntVectorNoTrace)
claireho50294ea2010-05-03 15:44:48 -0700197#define res_getPublicType U_ICU_ENTRY_POINT_RENAME(res_getPublicType)
198#define res_getResource U_ICU_ENTRY_POINT_RENAME(res_getResource)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +0000199#define res_getStringNoTrace U_ICU_ENTRY_POINT_RENAME(res_getStringNoTrace)
claireho50294ea2010-05-03 15:44:48 -0700200#define res_getTableItemByIndex U_ICU_ENTRY_POINT_RENAME(res_getTableItemByIndex)
201#define res_getTableItemByKey U_ICU_ENTRY_POINT_RENAME(res_getTableItemByKey)
202#define res_load U_ICU_ENTRY_POINT_RENAME(res_load)
203#define res_read U_ICU_ENTRY_POINT_RENAME(res_read)
204#define res_unload U_ICU_ENTRY_POINT_RENAME(res_unload)
claireho50294ea2010-05-03 15:44:48 -0700205#define u_UCharsToChars U_ICU_ENTRY_POINT_RENAME(u_UCharsToChars)
Victor Chang82493902020-12-23 17:27:56 +0000206#define u_asciiToUpper U_ICU_ENTRY_POINT_RENAME(u_asciiToUpper)
claireho50294ea2010-05-03 15:44:48 -0700207#define u_austrcpy U_ICU_ENTRY_POINT_RENAME(u_austrcpy)
208#define u_austrncpy U_ICU_ENTRY_POINT_RENAME(u_austrncpy)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +0100209#define u_caseInsensitivePrefixMatch U_ICU_ENTRY_POINT_RENAME(u_caseInsensitivePrefixMatch)
claireho50294ea2010-05-03 15:44:48 -0700210#define u_catclose U_ICU_ENTRY_POINT_RENAME(u_catclose)
211#define u_catgets U_ICU_ENTRY_POINT_RENAME(u_catgets)
212#define u_catopen U_ICU_ENTRY_POINT_RENAME(u_catopen)
213#define u_charAge U_ICU_ENTRY_POINT_RENAME(u_charAge)
214#define u_charDigitValue U_ICU_ENTRY_POINT_RENAME(u_charDigitValue)
215#define u_charDirection U_ICU_ENTRY_POINT_RENAME(u_charDirection)
216#define u_charFromName U_ICU_ENTRY_POINT_RENAME(u_charFromName)
217#define u_charMirror U_ICU_ENTRY_POINT_RENAME(u_charMirror)
218#define u_charName U_ICU_ENTRY_POINT_RENAME(u_charName)
219#define u_charType U_ICU_ENTRY_POINT_RENAME(u_charType)
220#define u_charsToUChars U_ICU_ENTRY_POINT_RENAME(u_charsToUChars)
221#define u_cleanup U_ICU_ENTRY_POINT_RENAME(u_cleanup)
222#define u_countChar32 U_ICU_ENTRY_POINT_RENAME(u_countChar32)
223#define u_digit U_ICU_ENTRY_POINT_RENAME(u_digit)
224#define u_enumCharNames U_ICU_ENTRY_POINT_RENAME(u_enumCharNames)
225#define u_enumCharTypes U_ICU_ENTRY_POINT_RENAME(u_enumCharTypes)
226#define u_errorName U_ICU_ENTRY_POINT_RENAME(u_errorName)
227#define u_fadopt U_ICU_ENTRY_POINT_RENAME(u_fadopt)
228#define u_fclose U_ICU_ENTRY_POINT_RENAME(u_fclose)
229#define u_feof U_ICU_ENTRY_POINT_RENAME(u_feof)
230#define u_fflush U_ICU_ENTRY_POINT_RENAME(u_fflush)
231#define u_fgetConverter U_ICU_ENTRY_POINT_RENAME(u_fgetConverter)
Craig Cornelius83933352013-06-14 14:20:29 -0700232#define u_fgetNumberFormat U_ICU_ENTRY_POINT_RENAME(u_fgetNumberFormat)
claireho50294ea2010-05-03 15:44:48 -0700233#define u_fgetc U_ICU_ENTRY_POINT_RENAME(u_fgetc)
234#define u_fgetcodepage U_ICU_ENTRY_POINT_RENAME(u_fgetcodepage)
235#define u_fgetcx U_ICU_ENTRY_POINT_RENAME(u_fgetcx)
236#define u_fgetfile U_ICU_ENTRY_POINT_RENAME(u_fgetfile)
237#define u_fgetlocale U_ICU_ENTRY_POINT_RENAME(u_fgetlocale)
238#define u_fgets U_ICU_ENTRY_POINT_RENAME(u_fgets)
239#define u_file_read U_ICU_ENTRY_POINT_RENAME(u_file_read)
240#define u_file_write U_ICU_ENTRY_POINT_RENAME(u_file_write)
241#define u_file_write_flush U_ICU_ENTRY_POINT_RENAME(u_file_write_flush)
242#define u_finit U_ICU_ENTRY_POINT_RENAME(u_finit)
claireho27f65472011-06-09 11:11:49 -0700243#define u_flushDefaultConverter U_ICU_ENTRY_POINT_RENAME(u_flushDefaultConverter)
claireho50294ea2010-05-03 15:44:48 -0700244#define u_foldCase U_ICU_ENTRY_POINT_RENAME(u_foldCase)
245#define u_fopen U_ICU_ENTRY_POINT_RENAME(u_fopen)
ccorneliusf9878a22014-11-20 18:09:39 -0800246#define u_fopen_u U_ICU_ENTRY_POINT_RENAME(u_fopen_u)
claireho50294ea2010-05-03 15:44:48 -0700247#define u_forDigit U_ICU_ENTRY_POINT_RENAME(u_forDigit)
248#define u_formatMessage U_ICU_ENTRY_POINT_RENAME(u_formatMessage)
249#define u_formatMessageWithError U_ICU_ENTRY_POINT_RENAME(u_formatMessageWithError)
250#define u_fprintf U_ICU_ENTRY_POINT_RENAME(u_fprintf)
251#define u_fprintf_u U_ICU_ENTRY_POINT_RENAME(u_fprintf_u)
252#define u_fputc U_ICU_ENTRY_POINT_RENAME(u_fputc)
253#define u_fputs U_ICU_ENTRY_POINT_RENAME(u_fputs)
254#define u_frewind U_ICU_ENTRY_POINT_RENAME(u_frewind)
255#define u_fscanf U_ICU_ENTRY_POINT_RENAME(u_fscanf)
256#define u_fscanf_u U_ICU_ENTRY_POINT_RENAME(u_fscanf_u)
257#define u_fsetcodepage U_ICU_ENTRY_POINT_RENAME(u_fsetcodepage)
258#define u_fsetlocale U_ICU_ENTRY_POINT_RENAME(u_fsetlocale)
259#define u_fsettransliterator U_ICU_ENTRY_POINT_RENAME(u_fsettransliterator)
260#define u_fstropen U_ICU_ENTRY_POINT_RENAME(u_fstropen)
261#define u_fungetc U_ICU_ENTRY_POINT_RENAME(u_fungetc)
ccornelius59d709d2014-02-20 10:29:46 -0800262#define u_getBidiPairedBracket U_ICU_ENTRY_POINT_RENAME(u_getBidiPairedBracket)
Victor Chang4578a1c2018-10-22 04:26:58 +0100263#define u_getBinaryPropertySet U_ICU_ENTRY_POINT_RENAME(u_getBinaryPropertySet)
claireho50294ea2010-05-03 15:44:48 -0700264#define u_getCombiningClass U_ICU_ENTRY_POINT_RENAME(u_getCombiningClass)
265#define u_getDataDirectory U_ICU_ENTRY_POINT_RENAME(u_getDataDirectory)
266#define u_getDataVersion U_ICU_ENTRY_POINT_RENAME(u_getDataVersion)
267#define u_getDefaultConverter U_ICU_ENTRY_POINT_RENAME(u_getDefaultConverter)
268#define u_getFC_NFKC_Closure U_ICU_ENTRY_POINT_RENAME(u_getFC_NFKC_Closure)
269#define u_getISOComment U_ICU_ENTRY_POINT_RENAME(u_getISOComment)
Victor Chang4578a1c2018-10-22 04:26:58 +0100270#define u_getIntPropertyMap U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyMap)
claireho50294ea2010-05-03 15:44:48 -0700271#define u_getIntPropertyMaxValue U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyMaxValue)
272#define u_getIntPropertyMinValue U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyMinValue)
273#define u_getIntPropertyValue U_ICU_ENTRY_POINT_RENAME(u_getIntPropertyValue)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700274#define u_getMainProperties U_ICU_ENTRY_POINT_RENAME(u_getMainProperties)
claireho50294ea2010-05-03 15:44:48 -0700275#define u_getNumericValue U_ICU_ENTRY_POINT_RENAME(u_getNumericValue)
276#define u_getPropertyEnum U_ICU_ENTRY_POINT_RENAME(u_getPropertyEnum)
277#define u_getPropertyName U_ICU_ENTRY_POINT_RENAME(u_getPropertyName)
278#define u_getPropertyValueEnum U_ICU_ENTRY_POINT_RENAME(u_getPropertyValueEnum)
279#define u_getPropertyValueName U_ICU_ENTRY_POINT_RENAME(u_getPropertyValueName)
ccorneliusf9878a22014-11-20 18:09:39 -0800280#define u_getTimeZoneFilesDirectory U_ICU_ENTRY_POINT_RENAME(u_getTimeZoneFilesDirectory)
claireho50294ea2010-05-03 15:44:48 -0700281#define u_getUnicodeProperties U_ICU_ENTRY_POINT_RENAME(u_getUnicodeProperties)
282#define u_getUnicodeVersion U_ICU_ENTRY_POINT_RENAME(u_getUnicodeVersion)
283#define u_getVersion U_ICU_ENTRY_POINT_RENAME(u_getVersion)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700284#define u_get_stdout U_ICU_ENTRY_POINT_RENAME(u_get_stdout)
claireho50294ea2010-05-03 15:44:48 -0700285#define u_hasBinaryProperty U_ICU_ENTRY_POINT_RENAME(u_hasBinaryProperty)
286#define u_init U_ICU_ENTRY_POINT_RENAME(u_init)
claireho50294ea2010-05-03 15:44:48 -0700287#define u_isIDIgnorable U_ICU_ENTRY_POINT_RENAME(u_isIDIgnorable)
288#define u_isIDPart U_ICU_ENTRY_POINT_RENAME(u_isIDPart)
289#define u_isIDStart U_ICU_ENTRY_POINT_RENAME(u_isIDStart)
290#define u_isISOControl U_ICU_ENTRY_POINT_RENAME(u_isISOControl)
291#define u_isJavaIDPart U_ICU_ENTRY_POINT_RENAME(u_isJavaIDPart)
292#define u_isJavaIDStart U_ICU_ENTRY_POINT_RENAME(u_isJavaIDStart)
293#define u_isJavaSpaceChar U_ICU_ENTRY_POINT_RENAME(u_isJavaSpaceChar)
294#define u_isMirrored U_ICU_ENTRY_POINT_RENAME(u_isMirrored)
295#define u_isUAlphabetic U_ICU_ENTRY_POINT_RENAME(u_isUAlphabetic)
296#define u_isULowercase U_ICU_ENTRY_POINT_RENAME(u_isULowercase)
297#define u_isUUppercase U_ICU_ENTRY_POINT_RENAME(u_isUUppercase)
298#define u_isUWhiteSpace U_ICU_ENTRY_POINT_RENAME(u_isUWhiteSpace)
299#define u_isWhitespace U_ICU_ENTRY_POINT_RENAME(u_isWhitespace)
300#define u_isalnum U_ICU_ENTRY_POINT_RENAME(u_isalnum)
301#define u_isalnumPOSIX U_ICU_ENTRY_POINT_RENAME(u_isalnumPOSIX)
302#define u_isalpha U_ICU_ENTRY_POINT_RENAME(u_isalpha)
303#define u_isbase U_ICU_ENTRY_POINT_RENAME(u_isbase)
304#define u_isblank U_ICU_ENTRY_POINT_RENAME(u_isblank)
305#define u_iscntrl U_ICU_ENTRY_POINT_RENAME(u_iscntrl)
306#define u_isdefined U_ICU_ENTRY_POINT_RENAME(u_isdefined)
307#define u_isdigit U_ICU_ENTRY_POINT_RENAME(u_isdigit)
308#define u_isgraph U_ICU_ENTRY_POINT_RENAME(u_isgraph)
309#define u_isgraphPOSIX U_ICU_ENTRY_POINT_RENAME(u_isgraphPOSIX)
310#define u_islower U_ICU_ENTRY_POINT_RENAME(u_islower)
311#define u_isprint U_ICU_ENTRY_POINT_RENAME(u_isprint)
312#define u_isprintPOSIX U_ICU_ENTRY_POINT_RENAME(u_isprintPOSIX)
313#define u_ispunct U_ICU_ENTRY_POINT_RENAME(u_ispunct)
314#define u_isspace U_ICU_ENTRY_POINT_RENAME(u_isspace)
315#define u_istitle U_ICU_ENTRY_POINT_RENAME(u_istitle)
316#define u_isupper U_ICU_ENTRY_POINT_RENAME(u_isupper)
317#define u_isxdigit U_ICU_ENTRY_POINT_RENAME(u_isxdigit)
claireho50294ea2010-05-03 15:44:48 -0700318#define u_locbund_close U_ICU_ENTRY_POINT_RENAME(u_locbund_close)
319#define u_locbund_getNumberFormat U_ICU_ENTRY_POINT_RENAME(u_locbund_getNumberFormat)
320#define u_locbund_init U_ICU_ENTRY_POINT_RENAME(u_locbund_init)
321#define u_memcasecmp U_ICU_ENTRY_POINT_RENAME(u_memcasecmp)
322#define u_memchr U_ICU_ENTRY_POINT_RENAME(u_memchr)
323#define u_memchr32 U_ICU_ENTRY_POINT_RENAME(u_memchr32)
324#define u_memcmp U_ICU_ENTRY_POINT_RENAME(u_memcmp)
325#define u_memcmpCodePointOrder U_ICU_ENTRY_POINT_RENAME(u_memcmpCodePointOrder)
326#define u_memcpy U_ICU_ENTRY_POINT_RENAME(u_memcpy)
327#define u_memmove U_ICU_ENTRY_POINT_RENAME(u_memmove)
328#define u_memrchr U_ICU_ENTRY_POINT_RENAME(u_memrchr)
329#define u_memrchr32 U_ICU_ENTRY_POINT_RENAME(u_memrchr32)
330#define u_memset U_ICU_ENTRY_POINT_RENAME(u_memset)
331#define u_parseMessage U_ICU_ENTRY_POINT_RENAME(u_parseMessage)
332#define u_parseMessageWithError U_ICU_ENTRY_POINT_RENAME(u_parseMessageWithError)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700333#define u_printf U_ICU_ENTRY_POINT_RENAME(u_printf)
claireho50294ea2010-05-03 15:44:48 -0700334#define u_printf_parse U_ICU_ENTRY_POINT_RENAME(u_printf_parse)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700335#define u_printf_u U_ICU_ENTRY_POINT_RENAME(u_printf_u)
claireho50294ea2010-05-03 15:44:48 -0700336#define u_releaseDefaultConverter U_ICU_ENTRY_POINT_RENAME(u_releaseDefaultConverter)
337#define u_scanf_parse U_ICU_ENTRY_POINT_RENAME(u_scanf_parse)
338#define u_setAtomicIncDecFunctions U_ICU_ENTRY_POINT_RENAME(u_setAtomicIncDecFunctions)
339#define u_setDataDirectory U_ICU_ENTRY_POINT_RENAME(u_setDataDirectory)
340#define u_setMemoryFunctions U_ICU_ENTRY_POINT_RENAME(u_setMemoryFunctions)
341#define u_setMutexFunctions U_ICU_ENTRY_POINT_RENAME(u_setMutexFunctions)
ccorneliusf9878a22014-11-20 18:09:39 -0800342#define u_setTimeZoneFilesDirectory U_ICU_ENTRY_POINT_RENAME(u_setTimeZoneFilesDirectory)
claireho50294ea2010-05-03 15:44:48 -0700343#define u_shapeArabic U_ICU_ENTRY_POINT_RENAME(u_shapeArabic)
344#define u_snprintf U_ICU_ENTRY_POINT_RENAME(u_snprintf)
345#define u_snprintf_u U_ICU_ENTRY_POINT_RENAME(u_snprintf_u)
346#define u_sprintf U_ICU_ENTRY_POINT_RENAME(u_sprintf)
347#define u_sprintf_u U_ICU_ENTRY_POINT_RENAME(u_sprintf_u)
348#define u_sscanf U_ICU_ENTRY_POINT_RENAME(u_sscanf)
349#define u_sscanf_u U_ICU_ENTRY_POINT_RENAME(u_sscanf_u)
350#define u_strCaseCompare U_ICU_ENTRY_POINT_RENAME(u_strCaseCompare)
351#define u_strCompare U_ICU_ENTRY_POINT_RENAME(u_strCompare)
352#define u_strCompareIter U_ICU_ENTRY_POINT_RENAME(u_strCompareIter)
353#define u_strFindFirst U_ICU_ENTRY_POINT_RENAME(u_strFindFirst)
354#define u_strFindLast U_ICU_ENTRY_POINT_RENAME(u_strFindLast)
355#define u_strFoldCase U_ICU_ENTRY_POINT_RENAME(u_strFoldCase)
356#define u_strFromJavaModifiedUTF8WithSub U_ICU_ENTRY_POINT_RENAME(u_strFromJavaModifiedUTF8WithSub)
357#define u_strFromPunycode U_ICU_ENTRY_POINT_RENAME(u_strFromPunycode)
358#define u_strFromUTF32 U_ICU_ENTRY_POINT_RENAME(u_strFromUTF32)
359#define u_strFromUTF32WithSub U_ICU_ENTRY_POINT_RENAME(u_strFromUTF32WithSub)
360#define u_strFromUTF8 U_ICU_ENTRY_POINT_RENAME(u_strFromUTF8)
361#define u_strFromUTF8Lenient U_ICU_ENTRY_POINT_RENAME(u_strFromUTF8Lenient)
362#define u_strFromUTF8WithSub U_ICU_ENTRY_POINT_RENAME(u_strFromUTF8WithSub)
363#define u_strFromWCS U_ICU_ENTRY_POINT_RENAME(u_strFromWCS)
364#define u_strHasMoreChar32Than U_ICU_ENTRY_POINT_RENAME(u_strHasMoreChar32Than)
365#define u_strToJavaModifiedUTF8 U_ICU_ENTRY_POINT_RENAME(u_strToJavaModifiedUTF8)
366#define u_strToLower U_ICU_ENTRY_POINT_RENAME(u_strToLower)
367#define u_strToPunycode U_ICU_ENTRY_POINT_RENAME(u_strToPunycode)
368#define u_strToTitle U_ICU_ENTRY_POINT_RENAME(u_strToTitle)
369#define u_strToUTF32 U_ICU_ENTRY_POINT_RENAME(u_strToUTF32)
370#define u_strToUTF32WithSub U_ICU_ENTRY_POINT_RENAME(u_strToUTF32WithSub)
371#define u_strToUTF8 U_ICU_ENTRY_POINT_RENAME(u_strToUTF8)
372#define u_strToUTF8WithSub U_ICU_ENTRY_POINT_RENAME(u_strToUTF8WithSub)
373#define u_strToUpper U_ICU_ENTRY_POINT_RENAME(u_strToUpper)
374#define u_strToWCS U_ICU_ENTRY_POINT_RENAME(u_strToWCS)
375#define u_strcasecmp U_ICU_ENTRY_POINT_RENAME(u_strcasecmp)
376#define u_strcat U_ICU_ENTRY_POINT_RENAME(u_strcat)
377#define u_strchr U_ICU_ENTRY_POINT_RENAME(u_strchr)
378#define u_strchr32 U_ICU_ENTRY_POINT_RENAME(u_strchr32)
379#define u_strcmp U_ICU_ENTRY_POINT_RENAME(u_strcmp)
380#define u_strcmpCodePointOrder U_ICU_ENTRY_POINT_RENAME(u_strcmpCodePointOrder)
381#define u_strcmpFold U_ICU_ENTRY_POINT_RENAME(u_strcmpFold)
382#define u_strcpy U_ICU_ENTRY_POINT_RENAME(u_strcpy)
383#define u_strcspn U_ICU_ENTRY_POINT_RENAME(u_strcspn)
384#define u_strlen U_ICU_ENTRY_POINT_RENAME(u_strlen)
385#define u_strncasecmp U_ICU_ENTRY_POINT_RENAME(u_strncasecmp)
386#define u_strncat U_ICU_ENTRY_POINT_RENAME(u_strncat)
387#define u_strncmp U_ICU_ENTRY_POINT_RENAME(u_strncmp)
388#define u_strncmpCodePointOrder U_ICU_ENTRY_POINT_RENAME(u_strncmpCodePointOrder)
389#define u_strncpy U_ICU_ENTRY_POINT_RENAME(u_strncpy)
390#define u_strpbrk U_ICU_ENTRY_POINT_RENAME(u_strpbrk)
391#define u_strrchr U_ICU_ENTRY_POINT_RENAME(u_strrchr)
392#define u_strrchr32 U_ICU_ENTRY_POINT_RENAME(u_strrchr32)
393#define u_strrstr U_ICU_ENTRY_POINT_RENAME(u_strrstr)
394#define u_strspn U_ICU_ENTRY_POINT_RENAME(u_strspn)
395#define u_strstr U_ICU_ENTRY_POINT_RENAME(u_strstr)
396#define u_strtok_r U_ICU_ENTRY_POINT_RENAME(u_strtok_r)
397#define u_terminateChars U_ICU_ENTRY_POINT_RENAME(u_terminateChars)
398#define u_terminateUChar32s U_ICU_ENTRY_POINT_RENAME(u_terminateUChar32s)
399#define u_terminateUChars U_ICU_ENTRY_POINT_RENAME(u_terminateUChars)
400#define u_terminateWChars U_ICU_ENTRY_POINT_RENAME(u_terminateWChars)
401#define u_tolower U_ICU_ENTRY_POINT_RENAME(u_tolower)
402#define u_totitle U_ICU_ENTRY_POINT_RENAME(u_totitle)
403#define u_toupper U_ICU_ENTRY_POINT_RENAME(u_toupper)
404#define u_uastrcpy U_ICU_ENTRY_POINT_RENAME(u_uastrcpy)
405#define u_uastrncpy U_ICU_ENTRY_POINT_RENAME(u_uastrncpy)
406#define u_unescape U_ICU_ENTRY_POINT_RENAME(u_unescape)
407#define u_unescapeAt U_ICU_ENTRY_POINT_RENAME(u_unescapeAt)
408#define u_versionFromString U_ICU_ENTRY_POINT_RENAME(u_versionFromString)
409#define u_versionFromUString U_ICU_ENTRY_POINT_RENAME(u_versionFromUString)
410#define u_versionToString U_ICU_ENTRY_POINT_RENAME(u_versionToString)
411#define u_vformatMessage U_ICU_ENTRY_POINT_RENAME(u_vformatMessage)
412#define u_vformatMessageWithError U_ICU_ENTRY_POINT_RENAME(u_vformatMessageWithError)
413#define u_vfprintf U_ICU_ENTRY_POINT_RENAME(u_vfprintf)
414#define u_vfprintf_u U_ICU_ENTRY_POINT_RENAME(u_vfprintf_u)
415#define u_vfscanf U_ICU_ENTRY_POINT_RENAME(u_vfscanf)
416#define u_vfscanf_u U_ICU_ENTRY_POINT_RENAME(u_vfscanf_u)
417#define u_vparseMessage U_ICU_ENTRY_POINT_RENAME(u_vparseMessage)
418#define u_vparseMessageWithError U_ICU_ENTRY_POINT_RENAME(u_vparseMessageWithError)
419#define u_vsnprintf U_ICU_ENTRY_POINT_RENAME(u_vsnprintf)
420#define u_vsnprintf_u U_ICU_ENTRY_POINT_RENAME(u_vsnprintf_u)
421#define u_vsprintf U_ICU_ENTRY_POINT_RENAME(u_vsprintf)
422#define u_vsprintf_u U_ICU_ENTRY_POINT_RENAME(u_vsprintf_u)
423#define u_vsscanf U_ICU_ENTRY_POINT_RENAME(u_vsscanf)
424#define u_vsscanf_u U_ICU_ENTRY_POINT_RENAME(u_vsscanf_u)
claireho50294ea2010-05-03 15:44:48 -0700425#define u_writeIdenticalLevelRun U_ICU_ENTRY_POINT_RENAME(u_writeIdenticalLevelRun)
claireho50294ea2010-05-03 15:44:48 -0700426#define ubidi_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(ubidi_addPropertyStarts)
427#define ubidi_close U_ICU_ENTRY_POINT_RENAME(ubidi_close)
claireho50294ea2010-05-03 15:44:48 -0700428#define ubidi_countParagraphs U_ICU_ENTRY_POINT_RENAME(ubidi_countParagraphs)
429#define ubidi_countRuns U_ICU_ENTRY_POINT_RENAME(ubidi_countRuns)
claireho27f65472011-06-09 11:11:49 -0700430#define ubidi_getBaseDirection U_ICU_ENTRY_POINT_RENAME(ubidi_getBaseDirection)
claireho50294ea2010-05-03 15:44:48 -0700431#define ubidi_getClass U_ICU_ENTRY_POINT_RENAME(ubidi_getClass)
432#define ubidi_getClassCallback U_ICU_ENTRY_POINT_RENAME(ubidi_getClassCallback)
433#define ubidi_getCustomizedClass U_ICU_ENTRY_POINT_RENAME(ubidi_getCustomizedClass)
434#define ubidi_getDirection U_ICU_ENTRY_POINT_RENAME(ubidi_getDirection)
435#define ubidi_getJoiningGroup U_ICU_ENTRY_POINT_RENAME(ubidi_getJoiningGroup)
436#define ubidi_getJoiningType U_ICU_ENTRY_POINT_RENAME(ubidi_getJoiningType)
437#define ubidi_getLength U_ICU_ENTRY_POINT_RENAME(ubidi_getLength)
438#define ubidi_getLevelAt U_ICU_ENTRY_POINT_RENAME(ubidi_getLevelAt)
439#define ubidi_getLevels U_ICU_ENTRY_POINT_RENAME(ubidi_getLevels)
440#define ubidi_getLogicalIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getLogicalIndex)
441#define ubidi_getLogicalMap U_ICU_ENTRY_POINT_RENAME(ubidi_getLogicalMap)
442#define ubidi_getLogicalRun U_ICU_ENTRY_POINT_RENAME(ubidi_getLogicalRun)
443#define ubidi_getMaxValue U_ICU_ENTRY_POINT_RENAME(ubidi_getMaxValue)
444#define ubidi_getMemory U_ICU_ENTRY_POINT_RENAME(ubidi_getMemory)
445#define ubidi_getMirror U_ICU_ENTRY_POINT_RENAME(ubidi_getMirror)
ccornelius59d709d2014-02-20 10:29:46 -0800446#define ubidi_getPairedBracket U_ICU_ENTRY_POINT_RENAME(ubidi_getPairedBracket)
447#define ubidi_getPairedBracketType U_ICU_ENTRY_POINT_RENAME(ubidi_getPairedBracketType)
claireho50294ea2010-05-03 15:44:48 -0700448#define ubidi_getParaLevel U_ICU_ENTRY_POINT_RENAME(ubidi_getParaLevel)
ccornelius59d709d2014-02-20 10:29:46 -0800449#define ubidi_getParaLevelAtIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getParaLevelAtIndex)
claireho50294ea2010-05-03 15:44:48 -0700450#define ubidi_getParagraph U_ICU_ENTRY_POINT_RENAME(ubidi_getParagraph)
451#define ubidi_getParagraphByIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getParagraphByIndex)
452#define ubidi_getProcessedLength U_ICU_ENTRY_POINT_RENAME(ubidi_getProcessedLength)
453#define ubidi_getReorderingMode U_ICU_ENTRY_POINT_RENAME(ubidi_getReorderingMode)
454#define ubidi_getReorderingOptions U_ICU_ENTRY_POINT_RENAME(ubidi_getReorderingOptions)
455#define ubidi_getResultLength U_ICU_ENTRY_POINT_RENAME(ubidi_getResultLength)
456#define ubidi_getRuns U_ICU_ENTRY_POINT_RENAME(ubidi_getRuns)
claireho50294ea2010-05-03 15:44:48 -0700457#define ubidi_getText U_ICU_ENTRY_POINT_RENAME(ubidi_getText)
458#define ubidi_getVisualIndex U_ICU_ENTRY_POINT_RENAME(ubidi_getVisualIndex)
459#define ubidi_getVisualMap U_ICU_ENTRY_POINT_RENAME(ubidi_getVisualMap)
460#define ubidi_getVisualRun U_ICU_ENTRY_POINT_RENAME(ubidi_getVisualRun)
461#define ubidi_invertMap U_ICU_ENTRY_POINT_RENAME(ubidi_invertMap)
462#define ubidi_isBidiControl U_ICU_ENTRY_POINT_RENAME(ubidi_isBidiControl)
463#define ubidi_isInverse U_ICU_ENTRY_POINT_RENAME(ubidi_isInverse)
464#define ubidi_isJoinControl U_ICU_ENTRY_POINT_RENAME(ubidi_isJoinControl)
465#define ubidi_isMirrored U_ICU_ENTRY_POINT_RENAME(ubidi_isMirrored)
466#define ubidi_isOrderParagraphsLTR U_ICU_ENTRY_POINT_RENAME(ubidi_isOrderParagraphsLTR)
467#define ubidi_open U_ICU_ENTRY_POINT_RENAME(ubidi_open)
468#define ubidi_openSized U_ICU_ENTRY_POINT_RENAME(ubidi_openSized)
469#define ubidi_orderParagraphsLTR U_ICU_ENTRY_POINT_RENAME(ubidi_orderParagraphsLTR)
470#define ubidi_reorderLogical U_ICU_ENTRY_POINT_RENAME(ubidi_reorderLogical)
471#define ubidi_reorderVisual U_ICU_ENTRY_POINT_RENAME(ubidi_reorderVisual)
472#define ubidi_setClassCallback U_ICU_ENTRY_POINT_RENAME(ubidi_setClassCallback)
clairehob26ce3a2012-01-10 17:54:41 -0800473#define ubidi_setContext U_ICU_ENTRY_POINT_RENAME(ubidi_setContext)
claireho50294ea2010-05-03 15:44:48 -0700474#define ubidi_setInverse U_ICU_ENTRY_POINT_RENAME(ubidi_setInverse)
475#define ubidi_setLine U_ICU_ENTRY_POINT_RENAME(ubidi_setLine)
476#define ubidi_setPara U_ICU_ENTRY_POINT_RENAME(ubidi_setPara)
477#define ubidi_setReorderingMode U_ICU_ENTRY_POINT_RENAME(ubidi_setReorderingMode)
478#define ubidi_setReorderingOptions U_ICU_ENTRY_POINT_RENAME(ubidi_setReorderingOptions)
479#define ubidi_writeReordered U_ICU_ENTRY_POINT_RENAME(ubidi_writeReordered)
480#define ubidi_writeReverse U_ICU_ENTRY_POINT_RENAME(ubidi_writeReverse)
Fredrik Roubert64339d32016-10-21 19:43:16 +0200481#define ubiditransform_close U_ICU_ENTRY_POINT_RENAME(ubiditransform_close)
482#define ubiditransform_open U_ICU_ENTRY_POINT_RENAME(ubiditransform_open)
483#define ubiditransform_transform U_ICU_ENTRY_POINT_RENAME(ubiditransform_transform)
claireho50294ea2010-05-03 15:44:48 -0700484#define ublock_getCode U_ICU_ENTRY_POINT_RENAME(ublock_getCode)
Victor Change24e73a2021-02-09 20:53:32 +0000485#define ubrk_clone U_ICU_ENTRY_POINT_RENAME(ubrk_clone)
claireho50294ea2010-05-03 15:44:48 -0700486#define ubrk_close U_ICU_ENTRY_POINT_RENAME(ubrk_close)
487#define ubrk_countAvailable U_ICU_ENTRY_POINT_RENAME(ubrk_countAvailable)
488#define ubrk_current U_ICU_ENTRY_POINT_RENAME(ubrk_current)
489#define ubrk_first U_ICU_ENTRY_POINT_RENAME(ubrk_first)
490#define ubrk_following U_ICU_ENTRY_POINT_RENAME(ubrk_following)
491#define ubrk_getAvailable U_ICU_ENTRY_POINT_RENAME(ubrk_getAvailable)
Fredrik Roubert0596fae2017-04-18 21:34:02 +0200492#define ubrk_getBinaryRules U_ICU_ENTRY_POINT_RENAME(ubrk_getBinaryRules)
claireho50294ea2010-05-03 15:44:48 -0700493#define ubrk_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ubrk_getLocaleByType)
494#define ubrk_getRuleStatus U_ICU_ENTRY_POINT_RENAME(ubrk_getRuleStatus)
495#define ubrk_getRuleStatusVec U_ICU_ENTRY_POINT_RENAME(ubrk_getRuleStatusVec)
496#define ubrk_isBoundary U_ICU_ENTRY_POINT_RENAME(ubrk_isBoundary)
497#define ubrk_last U_ICU_ENTRY_POINT_RENAME(ubrk_last)
498#define ubrk_next U_ICU_ENTRY_POINT_RENAME(ubrk_next)
499#define ubrk_open U_ICU_ENTRY_POINT_RENAME(ubrk_open)
Fredrik Roubert0596fae2017-04-18 21:34:02 +0200500#define ubrk_openBinaryRules U_ICU_ENTRY_POINT_RENAME(ubrk_openBinaryRules)
claireho50294ea2010-05-03 15:44:48 -0700501#define ubrk_openRules U_ICU_ENTRY_POINT_RENAME(ubrk_openRules)
502#define ubrk_preceding U_ICU_ENTRY_POINT_RENAME(ubrk_preceding)
503#define ubrk_previous U_ICU_ENTRY_POINT_RENAME(ubrk_previous)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700504#define ubrk_refreshUText U_ICU_ENTRY_POINT_RENAME(ubrk_refreshUText)
claireho50294ea2010-05-03 15:44:48 -0700505#define ubrk_safeClone U_ICU_ENTRY_POINT_RENAME(ubrk_safeClone)
506#define ubrk_setText U_ICU_ENTRY_POINT_RENAME(ubrk_setText)
507#define ubrk_setUText U_ICU_ENTRY_POINT_RENAME(ubrk_setUText)
508#define ubrk_swap U_ICU_ENTRY_POINT_RENAME(ubrk_swap)
ccorneliusf9878a22014-11-20 18:09:39 -0800509#define ucache_compareKeys U_ICU_ENTRY_POINT_RENAME(ucache_compareKeys)
510#define ucache_deleteKey U_ICU_ENTRY_POINT_RENAME(ucache_deleteKey)
511#define ucache_hashKeys U_ICU_ENTRY_POINT_RENAME(ucache_hashKeys)
claireho50294ea2010-05-03 15:44:48 -0700512#define ucal_add U_ICU_ENTRY_POINT_RENAME(ucal_add)
513#define ucal_clear U_ICU_ENTRY_POINT_RENAME(ucal_clear)
514#define ucal_clearField U_ICU_ENTRY_POINT_RENAME(ucal_clearField)
515#define ucal_clone U_ICU_ENTRY_POINT_RENAME(ucal_clone)
516#define ucal_close U_ICU_ENTRY_POINT_RENAME(ucal_close)
517#define ucal_countAvailable U_ICU_ENTRY_POINT_RENAME(ucal_countAvailable)
518#define ucal_equivalentTo U_ICU_ENTRY_POINT_RENAME(ucal_equivalentTo)
519#define ucal_get U_ICU_ENTRY_POINT_RENAME(ucal_get)
520#define ucal_getAttribute U_ICU_ENTRY_POINT_RENAME(ucal_getAttribute)
521#define ucal_getAvailable U_ICU_ENTRY_POINT_RENAME(ucal_getAvailable)
522#define ucal_getCanonicalTimeZoneID U_ICU_ENTRY_POINT_RENAME(ucal_getCanonicalTimeZoneID)
523#define ucal_getDSTSavings U_ICU_ENTRY_POINT_RENAME(ucal_getDSTSavings)
524#define ucal_getDayOfWeekType U_ICU_ENTRY_POINT_RENAME(ucal_getDayOfWeekType)
525#define ucal_getDefaultTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_getDefaultTimeZone)
clairehob26ce3a2012-01-10 17:54:41 -0800526#define ucal_getFieldDifference U_ICU_ENTRY_POINT_RENAME(ucal_getFieldDifference)
claireho50294ea2010-05-03 15:44:48 -0700527#define ucal_getGregorianChange U_ICU_ENTRY_POINT_RENAME(ucal_getGregorianChange)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +0000528#define ucal_getHostTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_getHostTimeZone)
claireho50294ea2010-05-03 15:44:48 -0700529#define ucal_getKeywordValuesForLocale U_ICU_ENTRY_POINT_RENAME(ucal_getKeywordValuesForLocale)
530#define ucal_getLimit U_ICU_ENTRY_POINT_RENAME(ucal_getLimit)
531#define ucal_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ucal_getLocaleByType)
532#define ucal_getMillis U_ICU_ENTRY_POINT_RENAME(ucal_getMillis)
533#define ucal_getNow U_ICU_ENTRY_POINT_RENAME(ucal_getNow)
534#define ucal_getTZDataVersion U_ICU_ENTRY_POINT_RENAME(ucal_getTZDataVersion)
535#define ucal_getTimeZoneDisplayName U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneDisplayName)
Craig Cornelius83933352013-06-14 14:20:29 -0700536#define ucal_getTimeZoneID U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneID)
ccornelius59d709d2014-02-20 10:29:46 -0800537#define ucal_getTimeZoneIDForWindowsID U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneIDForWindowsID)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800538#define ucal_getTimeZoneTransitionDate U_ICU_ENTRY_POINT_RENAME(ucal_getTimeZoneTransitionDate)
claireho50294ea2010-05-03 15:44:48 -0700539#define ucal_getType U_ICU_ENTRY_POINT_RENAME(ucal_getType)
540#define ucal_getWeekendTransition U_ICU_ENTRY_POINT_RENAME(ucal_getWeekendTransition)
ccornelius59d709d2014-02-20 10:29:46 -0800541#define ucal_getWindowsTimeZoneID U_ICU_ENTRY_POINT_RENAME(ucal_getWindowsTimeZoneID)
claireho50294ea2010-05-03 15:44:48 -0700542#define ucal_inDaylightTime U_ICU_ENTRY_POINT_RENAME(ucal_inDaylightTime)
543#define ucal_isSet U_ICU_ENTRY_POINT_RENAME(ucal_isSet)
544#define ucal_isWeekend U_ICU_ENTRY_POINT_RENAME(ucal_isWeekend)
545#define ucal_open U_ICU_ENTRY_POINT_RENAME(ucal_open)
546#define ucal_openCountryTimeZones U_ICU_ENTRY_POINT_RENAME(ucal_openCountryTimeZones)
clairehob26ce3a2012-01-10 17:54:41 -0800547#define ucal_openTimeZoneIDEnumeration U_ICU_ENTRY_POINT_RENAME(ucal_openTimeZoneIDEnumeration)
claireho50294ea2010-05-03 15:44:48 -0700548#define ucal_openTimeZones U_ICU_ENTRY_POINT_RENAME(ucal_openTimeZones)
549#define ucal_roll U_ICU_ENTRY_POINT_RENAME(ucal_roll)
550#define ucal_set U_ICU_ENTRY_POINT_RENAME(ucal_set)
551#define ucal_setAttribute U_ICU_ENTRY_POINT_RENAME(ucal_setAttribute)
552#define ucal_setDate U_ICU_ENTRY_POINT_RENAME(ucal_setDate)
553#define ucal_setDateTime U_ICU_ENTRY_POINT_RENAME(ucal_setDateTime)
554#define ucal_setDefaultTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_setDefaultTimeZone)
555#define ucal_setGregorianChange U_ICU_ENTRY_POINT_RENAME(ucal_setGregorianChange)
556#define ucal_setMillis U_ICU_ENTRY_POINT_RENAME(ucal_setMillis)
557#define ucal_setTimeZone U_ICU_ENTRY_POINT_RENAME(ucal_setTimeZone)
558#define ucase_addCaseClosure U_ICU_ENTRY_POINT_RENAME(ucase_addCaseClosure)
559#define ucase_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(ucase_addPropertyStarts)
560#define ucase_addStringCaseClosure U_ICU_ENTRY_POINT_RENAME(ucase_addStringCaseClosure)
claireho50294ea2010-05-03 15:44:48 -0700561#define ucase_fold U_ICU_ENTRY_POINT_RENAME(ucase_fold)
562#define ucase_getCaseLocale U_ICU_ENTRY_POINT_RENAME(ucase_getCaseLocale)
Fredrik Roubert8785a572018-03-26 20:54:58 +0200563#define ucase_getTrie U_ICU_ENTRY_POINT_RENAME(ucase_getTrie)
claireho50294ea2010-05-03 15:44:48 -0700564#define ucase_getType U_ICU_ENTRY_POINT_RENAME(ucase_getType)
565#define ucase_getTypeOrIgnorable U_ICU_ENTRY_POINT_RENAME(ucase_getTypeOrIgnorable)
566#define ucase_hasBinaryProperty U_ICU_ENTRY_POINT_RENAME(ucase_hasBinaryProperty)
567#define ucase_isCaseSensitive U_ICU_ENTRY_POINT_RENAME(ucase_isCaseSensitive)
568#define ucase_isSoftDotted U_ICU_ENTRY_POINT_RENAME(ucase_isSoftDotted)
569#define ucase_toFullFolding U_ICU_ENTRY_POINT_RENAME(ucase_toFullFolding)
570#define ucase_toFullLower U_ICU_ENTRY_POINT_RENAME(ucase_toFullLower)
571#define ucase_toFullTitle U_ICU_ENTRY_POINT_RENAME(ucase_toFullTitle)
572#define ucase_toFullUpper U_ICU_ENTRY_POINT_RENAME(ucase_toFullUpper)
573#define ucase_tolower U_ICU_ENTRY_POINT_RENAME(ucase_tolower)
574#define ucase_totitle U_ICU_ENTRY_POINT_RENAME(ucase_totitle)
575#define ucase_toupper U_ICU_ENTRY_POINT_RENAME(ucase_toupper)
576#define ucasemap_close U_ICU_ENTRY_POINT_RENAME(ucasemap_close)
577#define ucasemap_getBreakIterator U_ICU_ENTRY_POINT_RENAME(ucasemap_getBreakIterator)
578#define ucasemap_getLocale U_ICU_ENTRY_POINT_RENAME(ucasemap_getLocale)
579#define ucasemap_getOptions U_ICU_ENTRY_POINT_RENAME(ucasemap_getOptions)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700580#define ucasemap_internalUTF8ToTitle U_ICU_ENTRY_POINT_RENAME(ucasemap_internalUTF8ToTitle)
claireho50294ea2010-05-03 15:44:48 -0700581#define ucasemap_open U_ICU_ENTRY_POINT_RENAME(ucasemap_open)
582#define ucasemap_setBreakIterator U_ICU_ENTRY_POINT_RENAME(ucasemap_setBreakIterator)
583#define ucasemap_setLocale U_ICU_ENTRY_POINT_RENAME(ucasemap_setLocale)
584#define ucasemap_setOptions U_ICU_ENTRY_POINT_RENAME(ucasemap_setOptions)
585#define ucasemap_toTitle U_ICU_ENTRY_POINT_RENAME(ucasemap_toTitle)
586#define ucasemap_utf8FoldCase U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8FoldCase)
587#define ucasemap_utf8ToLower U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8ToLower)
588#define ucasemap_utf8ToTitle U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8ToTitle)
589#define ucasemap_utf8ToUpper U_ICU_ENTRY_POINT_RENAME(ucasemap_utf8ToUpper)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100590#define ucfpos_close U_ICU_ENTRY_POINT_RENAME(ucfpos_close)
591#define ucfpos_constrainCategory U_ICU_ENTRY_POINT_RENAME(ucfpos_constrainCategory)
592#define ucfpos_constrainField U_ICU_ENTRY_POINT_RENAME(ucfpos_constrainField)
593#define ucfpos_getCategory U_ICU_ENTRY_POINT_RENAME(ucfpos_getCategory)
594#define ucfpos_getField U_ICU_ENTRY_POINT_RENAME(ucfpos_getField)
595#define ucfpos_getIndexes U_ICU_ENTRY_POINT_RENAME(ucfpos_getIndexes)
596#define ucfpos_getInt64IterationContext U_ICU_ENTRY_POINT_RENAME(ucfpos_getInt64IterationContext)
597#define ucfpos_matchesField U_ICU_ENTRY_POINT_RENAME(ucfpos_matchesField)
598#define ucfpos_open U_ICU_ENTRY_POINT_RENAME(ucfpos_open)
599#define ucfpos_reset U_ICU_ENTRY_POINT_RENAME(ucfpos_reset)
600#define ucfpos_setInt64IterationContext U_ICU_ENTRY_POINT_RENAME(ucfpos_setInt64IterationContext)
601#define ucfpos_setState U_ICU_ENTRY_POINT_RENAME(ucfpos_setState)
claireho50294ea2010-05-03 15:44:48 -0700602#define uchar_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(uchar_addPropertyStarts)
603#define uchar_swapNames U_ICU_ENTRY_POINT_RENAME(uchar_swapNames)
604#define ucln_cleanupOne U_ICU_ENTRY_POINT_RENAME(ucln_cleanupOne)
605#define ucln_common_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_common_registerCleanup)
606#define ucln_i18n_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_i18n_registerCleanup)
607#define ucln_io_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_io_registerCleanup)
608#define ucln_lib_cleanup U_ICU_ENTRY_POINT_RENAME(ucln_lib_cleanup)
609#define ucln_registerCleanup U_ICU_ENTRY_POINT_RENAME(ucln_registerCleanup)
610#define ucnv_MBCSFromUChar32 U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSFromUChar32)
611#define ucnv_MBCSFromUnicodeWithOffsets U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSFromUnicodeWithOffsets)
612#define ucnv_MBCSGetFilteredUnicodeSetForUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSGetFilteredUnicodeSetForUnicode)
613#define ucnv_MBCSGetType U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSGetType)
614#define ucnv_MBCSGetUnicodeSetForUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSGetUnicodeSetForUnicode)
615#define ucnv_MBCSIsLeadByte U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSIsLeadByte)
616#define ucnv_MBCSSimpleGetNextUChar U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSSimpleGetNextUChar)
617#define ucnv_MBCSToUnicodeWithOffsets U_ICU_ENTRY_POINT_RENAME(ucnv_MBCSToUnicodeWithOffsets)
618#define ucnv_bld_countAvailableConverters U_ICU_ENTRY_POINT_RENAME(ucnv_bld_countAvailableConverters)
619#define ucnv_bld_getAvailableConverter U_ICU_ENTRY_POINT_RENAME(ucnv_bld_getAvailableConverter)
620#define ucnv_canCreateConverter U_ICU_ENTRY_POINT_RENAME(ucnv_canCreateConverter)
621#define ucnv_cbFromUWriteBytes U_ICU_ENTRY_POINT_RENAME(ucnv_cbFromUWriteBytes)
622#define ucnv_cbFromUWriteSub U_ICU_ENTRY_POINT_RENAME(ucnv_cbFromUWriteSub)
623#define ucnv_cbFromUWriteUChars U_ICU_ENTRY_POINT_RENAME(ucnv_cbFromUWriteUChars)
624#define ucnv_cbToUWriteSub U_ICU_ENTRY_POINT_RENAME(ucnv_cbToUWriteSub)
625#define ucnv_cbToUWriteUChars U_ICU_ENTRY_POINT_RENAME(ucnv_cbToUWriteUChars)
626#define ucnv_close U_ICU_ENTRY_POINT_RENAME(ucnv_close)
627#define ucnv_compareNames U_ICU_ENTRY_POINT_RENAME(ucnv_compareNames)
628#define ucnv_convert U_ICU_ENTRY_POINT_RENAME(ucnv_convert)
629#define ucnv_convertEx U_ICU_ENTRY_POINT_RENAME(ucnv_convertEx)
630#define ucnv_countAliases U_ICU_ENTRY_POINT_RENAME(ucnv_countAliases)
631#define ucnv_countAvailable U_ICU_ENTRY_POINT_RENAME(ucnv_countAvailable)
632#define ucnv_countStandards U_ICU_ENTRY_POINT_RENAME(ucnv_countStandards)
633#define ucnv_createAlgorithmicConverter U_ICU_ENTRY_POINT_RENAME(ucnv_createAlgorithmicConverter)
634#define ucnv_createConverter U_ICU_ENTRY_POINT_RENAME(ucnv_createConverter)
635#define ucnv_createConverterFromPackage U_ICU_ENTRY_POINT_RENAME(ucnv_createConverterFromPackage)
636#define ucnv_createConverterFromSharedData U_ICU_ENTRY_POINT_RENAME(ucnv_createConverterFromSharedData)
637#define ucnv_detectUnicodeSignature U_ICU_ENTRY_POINT_RENAME(ucnv_detectUnicodeSignature)
Fredrik Roubert57b72de2018-06-21 14:29:02 +0200638#define ucnv_enableCleanup U_ICU_ENTRY_POINT_RENAME(ucnv_enableCleanup)
claireho50294ea2010-05-03 15:44:48 -0700639#define ucnv_extContinueMatchFromU U_ICU_ENTRY_POINT_RENAME(ucnv_extContinueMatchFromU)
640#define ucnv_extContinueMatchToU U_ICU_ENTRY_POINT_RENAME(ucnv_extContinueMatchToU)
641#define ucnv_extGetUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_extGetUnicodeSet)
642#define ucnv_extInitialMatchFromU U_ICU_ENTRY_POINT_RENAME(ucnv_extInitialMatchFromU)
643#define ucnv_extInitialMatchToU U_ICU_ENTRY_POINT_RENAME(ucnv_extInitialMatchToU)
644#define ucnv_extSimpleMatchFromU U_ICU_ENTRY_POINT_RENAME(ucnv_extSimpleMatchFromU)
645#define ucnv_extSimpleMatchToU U_ICU_ENTRY_POINT_RENAME(ucnv_extSimpleMatchToU)
646#define ucnv_fixFileSeparator U_ICU_ENTRY_POINT_RENAME(ucnv_fixFileSeparator)
647#define ucnv_flushCache U_ICU_ENTRY_POINT_RENAME(ucnv_flushCache)
648#define ucnv_fromAlgorithmic U_ICU_ENTRY_POINT_RENAME(ucnv_fromAlgorithmic)
649#define ucnv_fromUChars U_ICU_ENTRY_POINT_RENAME(ucnv_fromUChars)
650#define ucnv_fromUCountPending U_ICU_ENTRY_POINT_RENAME(ucnv_fromUCountPending)
651#define ucnv_fromUWriteBytes U_ICU_ENTRY_POINT_RENAME(ucnv_fromUWriteBytes)
652#define ucnv_fromUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_fromUnicode)
653#define ucnv_fromUnicode_UTF8 U_ICU_ENTRY_POINT_RENAME(ucnv_fromUnicode_UTF8)
654#define ucnv_fromUnicode_UTF8_OFFSETS_LOGIC U_ICU_ENTRY_POINT_RENAME(ucnv_fromUnicode_UTF8_OFFSETS_LOGIC)
655#define ucnv_getAlias U_ICU_ENTRY_POINT_RENAME(ucnv_getAlias)
656#define ucnv_getAliases U_ICU_ENTRY_POINT_RENAME(ucnv_getAliases)
657#define ucnv_getAvailableName U_ICU_ENTRY_POINT_RENAME(ucnv_getAvailableName)
658#define ucnv_getCCSID U_ICU_ENTRY_POINT_RENAME(ucnv_getCCSID)
659#define ucnv_getCanonicalName U_ICU_ENTRY_POINT_RENAME(ucnv_getCanonicalName)
660#define ucnv_getCompleteUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_getCompleteUnicodeSet)
661#define ucnv_getDefaultName U_ICU_ENTRY_POINT_RENAME(ucnv_getDefaultName)
662#define ucnv_getDisplayName U_ICU_ENTRY_POINT_RENAME(ucnv_getDisplayName)
663#define ucnv_getFromUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_getFromUCallBack)
664#define ucnv_getInvalidChars U_ICU_ENTRY_POINT_RENAME(ucnv_getInvalidChars)
665#define ucnv_getInvalidUChars U_ICU_ENTRY_POINT_RENAME(ucnv_getInvalidUChars)
666#define ucnv_getMaxCharSize U_ICU_ENTRY_POINT_RENAME(ucnv_getMaxCharSize)
667#define ucnv_getMinCharSize U_ICU_ENTRY_POINT_RENAME(ucnv_getMinCharSize)
668#define ucnv_getName U_ICU_ENTRY_POINT_RENAME(ucnv_getName)
669#define ucnv_getNextUChar U_ICU_ENTRY_POINT_RENAME(ucnv_getNextUChar)
670#define ucnv_getNonSurrogateUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_getNonSurrogateUnicodeSet)
671#define ucnv_getPlatform U_ICU_ENTRY_POINT_RENAME(ucnv_getPlatform)
672#define ucnv_getStandard U_ICU_ENTRY_POINT_RENAME(ucnv_getStandard)
673#define ucnv_getStandardName U_ICU_ENTRY_POINT_RENAME(ucnv_getStandardName)
674#define ucnv_getStarters U_ICU_ENTRY_POINT_RENAME(ucnv_getStarters)
675#define ucnv_getSubstChars U_ICU_ENTRY_POINT_RENAME(ucnv_getSubstChars)
676#define ucnv_getToUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_getToUCallBack)
677#define ucnv_getType U_ICU_ENTRY_POINT_RENAME(ucnv_getType)
678#define ucnv_getUnicodeSet U_ICU_ENTRY_POINT_RENAME(ucnv_getUnicodeSet)
679#define ucnv_incrementRefCount U_ICU_ENTRY_POINT_RENAME(ucnv_incrementRefCount)
680#define ucnv_io_countKnownConverters U_ICU_ENTRY_POINT_RENAME(ucnv_io_countKnownConverters)
681#define ucnv_io_getConverterName U_ICU_ENTRY_POINT_RENAME(ucnv_io_getConverterName)
682#define ucnv_io_stripASCIIForCompare U_ICU_ENTRY_POINT_RENAME(ucnv_io_stripASCIIForCompare)
683#define ucnv_io_stripEBCDICForCompare U_ICU_ENTRY_POINT_RENAME(ucnv_io_stripEBCDICForCompare)
684#define ucnv_isAmbiguous U_ICU_ENTRY_POINT_RENAME(ucnv_isAmbiguous)
clairehob26ce3a2012-01-10 17:54:41 -0800685#define ucnv_isFixedWidth U_ICU_ENTRY_POINT_RENAME(ucnv_isFixedWidth)
claireho50294ea2010-05-03 15:44:48 -0700686#define ucnv_load U_ICU_ENTRY_POINT_RENAME(ucnv_load)
687#define ucnv_loadSharedData U_ICU_ENTRY_POINT_RENAME(ucnv_loadSharedData)
688#define ucnv_open U_ICU_ENTRY_POINT_RENAME(ucnv_open)
689#define ucnv_openAllNames U_ICU_ENTRY_POINT_RENAME(ucnv_openAllNames)
690#define ucnv_openCCSID U_ICU_ENTRY_POINT_RENAME(ucnv_openCCSID)
691#define ucnv_openPackage U_ICU_ENTRY_POINT_RENAME(ucnv_openPackage)
692#define ucnv_openStandardNames U_ICU_ENTRY_POINT_RENAME(ucnv_openStandardNames)
693#define ucnv_openU U_ICU_ENTRY_POINT_RENAME(ucnv_openU)
694#define ucnv_reset U_ICU_ENTRY_POINT_RENAME(ucnv_reset)
695#define ucnv_resetFromUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_resetFromUnicode)
696#define ucnv_resetToUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_resetToUnicode)
697#define ucnv_safeClone U_ICU_ENTRY_POINT_RENAME(ucnv_safeClone)
698#define ucnv_setDefaultName U_ICU_ENTRY_POINT_RENAME(ucnv_setDefaultName)
699#define ucnv_setFallback U_ICU_ENTRY_POINT_RENAME(ucnv_setFallback)
700#define ucnv_setFromUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_setFromUCallBack)
701#define ucnv_setSubstChars U_ICU_ENTRY_POINT_RENAME(ucnv_setSubstChars)
702#define ucnv_setSubstString U_ICU_ENTRY_POINT_RENAME(ucnv_setSubstString)
703#define ucnv_setToUCallBack U_ICU_ENTRY_POINT_RENAME(ucnv_setToUCallBack)
704#define ucnv_swap U_ICU_ENTRY_POINT_RENAME(ucnv_swap)
705#define ucnv_swapAliases U_ICU_ENTRY_POINT_RENAME(ucnv_swapAliases)
706#define ucnv_toAlgorithmic U_ICU_ENTRY_POINT_RENAME(ucnv_toAlgorithmic)
707#define ucnv_toUChars U_ICU_ENTRY_POINT_RENAME(ucnv_toUChars)
708#define ucnv_toUCountPending U_ICU_ENTRY_POINT_RENAME(ucnv_toUCountPending)
709#define ucnv_toUWriteCodePoint U_ICU_ENTRY_POINT_RENAME(ucnv_toUWriteCodePoint)
710#define ucnv_toUWriteUChars U_ICU_ENTRY_POINT_RENAME(ucnv_toUWriteUChars)
711#define ucnv_toUnicode U_ICU_ENTRY_POINT_RENAME(ucnv_toUnicode)
712#define ucnv_unload U_ICU_ENTRY_POINT_RENAME(ucnv_unload)
713#define ucnv_unloadSharedDataIfReady U_ICU_ENTRY_POINT_RENAME(ucnv_unloadSharedDataIfReady)
714#define ucnv_usesFallback U_ICU_ENTRY_POINT_RENAME(ucnv_usesFallback)
715#define ucnvsel_close U_ICU_ENTRY_POINT_RENAME(ucnvsel_close)
716#define ucnvsel_open U_ICU_ENTRY_POINT_RENAME(ucnvsel_open)
717#define ucnvsel_openFromSerialized U_ICU_ENTRY_POINT_RENAME(ucnvsel_openFromSerialized)
718#define ucnvsel_selectForString U_ICU_ENTRY_POINT_RENAME(ucnvsel_selectForString)
719#define ucnvsel_selectForUTF8 U_ICU_ENTRY_POINT_RENAME(ucnvsel_selectForUTF8)
720#define ucnvsel_serialize U_ICU_ENTRY_POINT_RENAME(ucnvsel_serialize)
claireho50294ea2010-05-03 15:44:48 -0700721#define ucol_cloneBinary U_ICU_ENTRY_POINT_RENAME(ucol_cloneBinary)
claireho50294ea2010-05-03 15:44:48 -0700722#define ucol_close U_ICU_ENTRY_POINT_RENAME(ucol_close)
723#define ucol_closeElements U_ICU_ENTRY_POINT_RENAME(ucol_closeElements)
724#define ucol_countAvailable U_ICU_ENTRY_POINT_RENAME(ucol_countAvailable)
claireho50294ea2010-05-03 15:44:48 -0700725#define ucol_equal U_ICU_ENTRY_POINT_RENAME(ucol_equal)
726#define ucol_equals U_ICU_ENTRY_POINT_RENAME(ucol_equals)
claireho50294ea2010-05-03 15:44:48 -0700727#define ucol_getAttribute U_ICU_ENTRY_POINT_RENAME(ucol_getAttribute)
claireho50294ea2010-05-03 15:44:48 -0700728#define ucol_getAvailable U_ICU_ENTRY_POINT_RENAME(ucol_getAvailable)
729#define ucol_getBound U_ICU_ENTRY_POINT_RENAME(ucol_getBound)
claireho50294ea2010-05-03 15:44:48 -0700730#define ucol_getContractions U_ICU_ENTRY_POINT_RENAME(ucol_getContractions)
731#define ucol_getContractionsAndExpansions U_ICU_ENTRY_POINT_RENAME(ucol_getContractionsAndExpansions)
732#define ucol_getDisplayName U_ICU_ENTRY_POINT_RENAME(ucol_getDisplayName)
clairehob26ce3a2012-01-10 17:54:41 -0800733#define ucol_getEquivalentReorderCodes U_ICU_ENTRY_POINT_RENAME(ucol_getEquivalentReorderCodes)
claireho50294ea2010-05-03 15:44:48 -0700734#define ucol_getFunctionalEquivalent U_ICU_ENTRY_POINT_RENAME(ucol_getFunctionalEquivalent)
735#define ucol_getKeywordValues U_ICU_ENTRY_POINT_RENAME(ucol_getKeywordValues)
736#define ucol_getKeywordValuesForLocale U_ICU_ENTRY_POINT_RENAME(ucol_getKeywordValuesForLocale)
737#define ucol_getKeywords U_ICU_ENTRY_POINT_RENAME(ucol_getKeywords)
738#define ucol_getLocale U_ICU_ENTRY_POINT_RENAME(ucol_getLocale)
739#define ucol_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ucol_getLocaleByType)
740#define ucol_getMaxExpansion U_ICU_ENTRY_POINT_RENAME(ucol_getMaxExpansion)
ccorneliusfceb3982014-04-16 12:27:14 -0700741#define ucol_getMaxVariable U_ICU_ENTRY_POINT_RENAME(ucol_getMaxVariable)
claireho50294ea2010-05-03 15:44:48 -0700742#define ucol_getOffset U_ICU_ENTRY_POINT_RENAME(ucol_getOffset)
claireho27f65472011-06-09 11:11:49 -0700743#define ucol_getReorderCodes U_ICU_ENTRY_POINT_RENAME(ucol_getReorderCodes)
claireho50294ea2010-05-03 15:44:48 -0700744#define ucol_getRules U_ICU_ENTRY_POINT_RENAME(ucol_getRules)
745#define ucol_getRulesEx U_ICU_ENTRY_POINT_RENAME(ucol_getRulesEx)
746#define ucol_getShortDefinitionString U_ICU_ENTRY_POINT_RENAME(ucol_getShortDefinitionString)
747#define ucol_getSortKey U_ICU_ENTRY_POINT_RENAME(ucol_getSortKey)
claireho50294ea2010-05-03 15:44:48 -0700748#define ucol_getStrength U_ICU_ENTRY_POINT_RENAME(ucol_getStrength)
749#define ucol_getTailoredSet U_ICU_ENTRY_POINT_RENAME(ucol_getTailoredSet)
750#define ucol_getUCAVersion U_ICU_ENTRY_POINT_RENAME(ucol_getUCAVersion)
751#define ucol_getUnsafeSet U_ICU_ENTRY_POINT_RENAME(ucol_getUnsafeSet)
752#define ucol_getVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_getVariableTop)
753#define ucol_getVersion U_ICU_ENTRY_POINT_RENAME(ucol_getVersion)
754#define ucol_greater U_ICU_ENTRY_POINT_RENAME(ucol_greater)
755#define ucol_greaterOrEqual U_ICU_ENTRY_POINT_RENAME(ucol_greaterOrEqual)
claireho50294ea2010-05-03 15:44:48 -0700756#define ucol_keyHashCode U_ICU_ENTRY_POINT_RENAME(ucol_keyHashCode)
757#define ucol_looksLikeCollationBinary U_ICU_ENTRY_POINT_RENAME(ucol_looksLikeCollationBinary)
758#define ucol_mergeSortkeys U_ICU_ENTRY_POINT_RENAME(ucol_mergeSortkeys)
759#define ucol_next U_ICU_ENTRY_POINT_RENAME(ucol_next)
claireho50294ea2010-05-03 15:44:48 -0700760#define ucol_nextSortKeyPart U_ICU_ENTRY_POINT_RENAME(ucol_nextSortKeyPart)
claireho50294ea2010-05-03 15:44:48 -0700761#define ucol_normalizeShortDefinitionString U_ICU_ENTRY_POINT_RENAME(ucol_normalizeShortDefinitionString)
762#define ucol_open U_ICU_ENTRY_POINT_RENAME(ucol_open)
763#define ucol_openAvailableLocales U_ICU_ENTRY_POINT_RENAME(ucol_openAvailableLocales)
764#define ucol_openBinary U_ICU_ENTRY_POINT_RENAME(ucol_openBinary)
765#define ucol_openElements U_ICU_ENTRY_POINT_RENAME(ucol_openElements)
766#define ucol_openFromShortString U_ICU_ENTRY_POINT_RENAME(ucol_openFromShortString)
767#define ucol_openRules U_ICU_ENTRY_POINT_RENAME(ucol_openRules)
claireho50294ea2010-05-03 15:44:48 -0700768#define ucol_prepareShortStringOpen U_ICU_ENTRY_POINT_RENAME(ucol_prepareShortStringOpen)
769#define ucol_previous U_ICU_ENTRY_POINT_RENAME(ucol_previous)
claireho50294ea2010-05-03 15:44:48 -0700770#define ucol_primaryOrder U_ICU_ENTRY_POINT_RENAME(ucol_primaryOrder)
claireho50294ea2010-05-03 15:44:48 -0700771#define ucol_reset U_ICU_ENTRY_POINT_RENAME(ucol_reset)
772#define ucol_restoreVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_restoreVariableTop)
773#define ucol_safeClone U_ICU_ENTRY_POINT_RENAME(ucol_safeClone)
774#define ucol_secondaryOrder U_ICU_ENTRY_POINT_RENAME(ucol_secondaryOrder)
775#define ucol_setAttribute U_ICU_ENTRY_POINT_RENAME(ucol_setAttribute)
ccorneliusfceb3982014-04-16 12:27:14 -0700776#define ucol_setMaxVariable U_ICU_ENTRY_POINT_RENAME(ucol_setMaxVariable)
claireho50294ea2010-05-03 15:44:48 -0700777#define ucol_setOffset U_ICU_ENTRY_POINT_RENAME(ucol_setOffset)
claireho27f65472011-06-09 11:11:49 -0700778#define ucol_setReorderCodes U_ICU_ENTRY_POINT_RENAME(ucol_setReorderCodes)
claireho50294ea2010-05-03 15:44:48 -0700779#define ucol_setStrength U_ICU_ENTRY_POINT_RENAME(ucol_setStrength)
780#define ucol_setText U_ICU_ENTRY_POINT_RENAME(ucol_setText)
781#define ucol_setVariableTop U_ICU_ENTRY_POINT_RENAME(ucol_setVariableTop)
782#define ucol_strcoll U_ICU_ENTRY_POINT_RENAME(ucol_strcoll)
783#define ucol_strcollIter U_ICU_ENTRY_POINT_RENAME(ucol_strcollIter)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800784#define ucol_strcollUTF8 U_ICU_ENTRY_POINT_RENAME(ucol_strcollUTF8)
claireho50294ea2010-05-03 15:44:48 -0700785#define ucol_swap U_ICU_ENTRY_POINT_RENAME(ucol_swap)
claireho50294ea2010-05-03 15:44:48 -0700786#define ucol_swapInverseUCA U_ICU_ENTRY_POINT_RENAME(ucol_swapInverseUCA)
787#define ucol_tertiaryOrder U_ICU_ENTRY_POINT_RENAME(ucol_tertiaryOrder)
Victor Chang4578a1c2018-10-22 04:26:58 +0100788#define ucpmap_get U_ICU_ENTRY_POINT_RENAME(ucpmap_get)
789#define ucpmap_getRange U_ICU_ENTRY_POINT_RENAME(ucpmap_getRange)
790#define ucptrie_close U_ICU_ENTRY_POINT_RENAME(ucptrie_close)
791#define ucptrie_get U_ICU_ENTRY_POINT_RENAME(ucptrie_get)
792#define ucptrie_getRange U_ICU_ENTRY_POINT_RENAME(ucptrie_getRange)
793#define ucptrie_getType U_ICU_ENTRY_POINT_RENAME(ucptrie_getType)
794#define ucptrie_getValueWidth U_ICU_ENTRY_POINT_RENAME(ucptrie_getValueWidth)
795#define ucptrie_internalGetRange U_ICU_ENTRY_POINT_RENAME(ucptrie_internalGetRange)
796#define ucptrie_internalSmallIndex U_ICU_ENTRY_POINT_RENAME(ucptrie_internalSmallIndex)
797#define ucptrie_internalSmallU8Index U_ICU_ENTRY_POINT_RENAME(ucptrie_internalSmallU8Index)
798#define ucptrie_internalU8PrevIndex U_ICU_ENTRY_POINT_RENAME(ucptrie_internalU8PrevIndex)
799#define ucptrie_openFromBinary U_ICU_ENTRY_POINT_RENAME(ucptrie_openFromBinary)
800#define ucptrie_swap U_ICU_ENTRY_POINT_RENAME(ucptrie_swap)
801#define ucptrie_toBinary U_ICU_ENTRY_POINT_RENAME(ucptrie_toBinary)
claireho50294ea2010-05-03 15:44:48 -0700802#define ucsdet_close U_ICU_ENTRY_POINT_RENAME(ucsdet_close)
803#define ucsdet_detect U_ICU_ENTRY_POINT_RENAME(ucsdet_detect)
804#define ucsdet_detectAll U_ICU_ENTRY_POINT_RENAME(ucsdet_detectAll)
805#define ucsdet_enableInputFilter U_ICU_ENTRY_POINT_RENAME(ucsdet_enableInputFilter)
806#define ucsdet_getAllDetectableCharsets U_ICU_ENTRY_POINT_RENAME(ucsdet_getAllDetectableCharsets)
807#define ucsdet_getConfidence U_ICU_ENTRY_POINT_RENAME(ucsdet_getConfidence)
ccornelius59d709d2014-02-20 10:29:46 -0800808#define ucsdet_getDetectableCharsets U_ICU_ENTRY_POINT_RENAME(ucsdet_getDetectableCharsets)
claireho50294ea2010-05-03 15:44:48 -0700809#define ucsdet_getLanguage U_ICU_ENTRY_POINT_RENAME(ucsdet_getLanguage)
810#define ucsdet_getName U_ICU_ENTRY_POINT_RENAME(ucsdet_getName)
811#define ucsdet_getUChars U_ICU_ENTRY_POINT_RENAME(ucsdet_getUChars)
812#define ucsdet_isInputFilterEnabled U_ICU_ENTRY_POINT_RENAME(ucsdet_isInputFilterEnabled)
813#define ucsdet_open U_ICU_ENTRY_POINT_RENAME(ucsdet_open)
814#define ucsdet_setDeclaredEncoding U_ICU_ENTRY_POINT_RENAME(ucsdet_setDeclaredEncoding)
ccornelius59d709d2014-02-20 10:29:46 -0800815#define ucsdet_setDetectableCharset U_ICU_ENTRY_POINT_RENAME(ucsdet_setDetectableCharset)
claireho50294ea2010-05-03 15:44:48 -0700816#define ucsdet_setText U_ICU_ENTRY_POINT_RENAME(ucsdet_setText)
817#define ucurr_countCurrencies U_ICU_ENTRY_POINT_RENAME(ucurr_countCurrencies)
818#define ucurr_forLocale U_ICU_ENTRY_POINT_RENAME(ucurr_forLocale)
819#define ucurr_forLocaleAndDate U_ICU_ENTRY_POINT_RENAME(ucurr_forLocaleAndDate)
820#define ucurr_getDefaultFractionDigits U_ICU_ENTRY_POINT_RENAME(ucurr_getDefaultFractionDigits)
ccorneliusf9878a22014-11-20 18:09:39 -0800821#define ucurr_getDefaultFractionDigitsForUsage U_ICU_ENTRY_POINT_RENAME(ucurr_getDefaultFractionDigitsForUsage)
claireho50294ea2010-05-03 15:44:48 -0700822#define ucurr_getKeywordValuesForLocale U_ICU_ENTRY_POINT_RENAME(ucurr_getKeywordValuesForLocale)
823#define ucurr_getName U_ICU_ENTRY_POINT_RENAME(ucurr_getName)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700824#define ucurr_getNumericCode U_ICU_ENTRY_POINT_RENAME(ucurr_getNumericCode)
claireho50294ea2010-05-03 15:44:48 -0700825#define ucurr_getPluralName U_ICU_ENTRY_POINT_RENAME(ucurr_getPluralName)
826#define ucurr_getRoundingIncrement U_ICU_ENTRY_POINT_RENAME(ucurr_getRoundingIncrement)
ccorneliusf9878a22014-11-20 18:09:39 -0800827#define ucurr_getRoundingIncrementForUsage U_ICU_ENTRY_POINT_RENAME(ucurr_getRoundingIncrementForUsage)
clairehob26ce3a2012-01-10 17:54:41 -0800828#define ucurr_isAvailable U_ICU_ENTRY_POINT_RENAME(ucurr_isAvailable)
claireho50294ea2010-05-03 15:44:48 -0700829#define ucurr_openISOCurrencies U_ICU_ENTRY_POINT_RENAME(ucurr_openISOCurrencies)
830#define ucurr_register U_ICU_ENTRY_POINT_RENAME(ucurr_register)
831#define ucurr_unregister U_ICU_ENTRY_POINT_RENAME(ucurr_unregister)
ccorneliusf9878a22014-11-20 18:09:39 -0800832#define udat_adoptNumberFormat U_ICU_ENTRY_POINT_RENAME(udat_adoptNumberFormat)
833#define udat_adoptNumberFormatForFields U_ICU_ENTRY_POINT_RENAME(udat_adoptNumberFormatForFields)
claireho50294ea2010-05-03 15:44:48 -0700834#define udat_applyPattern U_ICU_ENTRY_POINT_RENAME(udat_applyPattern)
835#define udat_applyPatternRelative U_ICU_ENTRY_POINT_RENAME(udat_applyPatternRelative)
836#define udat_clone U_ICU_ENTRY_POINT_RENAME(udat_clone)
837#define udat_close U_ICU_ENTRY_POINT_RENAME(udat_close)
838#define udat_countAvailable U_ICU_ENTRY_POINT_RENAME(udat_countAvailable)
839#define udat_countSymbols U_ICU_ENTRY_POINT_RENAME(udat_countSymbols)
840#define udat_format U_ICU_ENTRY_POINT_RENAME(udat_format)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +0100841#define udat_formatCalendar U_ICU_ENTRY_POINT_RENAME(udat_formatCalendar)
842#define udat_formatCalendarForFields U_ICU_ENTRY_POINT_RENAME(udat_formatCalendarForFields)
843#define udat_formatForFields U_ICU_ENTRY_POINT_RENAME(udat_formatForFields)
claireho50294ea2010-05-03 15:44:48 -0700844#define udat_get2DigitYearStart U_ICU_ENTRY_POINT_RENAME(udat_get2DigitYearStart)
845#define udat_getAvailable U_ICU_ENTRY_POINT_RENAME(udat_getAvailable)
ccorneliusf9878a22014-11-20 18:09:39 -0800846#define udat_getBooleanAttribute U_ICU_ENTRY_POINT_RENAME(udat_getBooleanAttribute)
claireho50294ea2010-05-03 15:44:48 -0700847#define udat_getCalendar U_ICU_ENTRY_POINT_RENAME(udat_getCalendar)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800848#define udat_getContext U_ICU_ENTRY_POINT_RENAME(udat_getContext)
claireho50294ea2010-05-03 15:44:48 -0700849#define udat_getLocaleByType U_ICU_ENTRY_POINT_RENAME(udat_getLocaleByType)
850#define udat_getNumberFormat U_ICU_ENTRY_POINT_RENAME(udat_getNumberFormat)
ccorneliusf9878a22014-11-20 18:09:39 -0800851#define udat_getNumberFormatForField U_ICU_ENTRY_POINT_RENAME(udat_getNumberFormatForField)
claireho50294ea2010-05-03 15:44:48 -0700852#define udat_getSymbols U_ICU_ENTRY_POINT_RENAME(udat_getSymbols)
853#define udat_isLenient U_ICU_ENTRY_POINT_RENAME(udat_isLenient)
854#define udat_open U_ICU_ENTRY_POINT_RENAME(udat_open)
855#define udat_parse U_ICU_ENTRY_POINT_RENAME(udat_parse)
856#define udat_parseCalendar U_ICU_ENTRY_POINT_RENAME(udat_parseCalendar)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700857#define udat_registerOpener U_ICU_ENTRY_POINT_RENAME(udat_registerOpener)
claireho50294ea2010-05-03 15:44:48 -0700858#define udat_set2DigitYearStart U_ICU_ENTRY_POINT_RENAME(udat_set2DigitYearStart)
ccorneliusf9878a22014-11-20 18:09:39 -0800859#define udat_setBooleanAttribute U_ICU_ENTRY_POINT_RENAME(udat_setBooleanAttribute)
claireho50294ea2010-05-03 15:44:48 -0700860#define udat_setCalendar U_ICU_ENTRY_POINT_RENAME(udat_setCalendar)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800861#define udat_setContext U_ICU_ENTRY_POINT_RENAME(udat_setContext)
claireho50294ea2010-05-03 15:44:48 -0700862#define udat_setLenient U_ICU_ENTRY_POINT_RENAME(udat_setLenient)
863#define udat_setNumberFormat U_ICU_ENTRY_POINT_RENAME(udat_setNumberFormat)
864#define udat_setSymbols U_ICU_ENTRY_POINT_RENAME(udat_setSymbols)
865#define udat_toCalendarDateField U_ICU_ENTRY_POINT_RENAME(udat_toCalendarDateField)
866#define udat_toPattern U_ICU_ENTRY_POINT_RENAME(udat_toPattern)
867#define udat_toPatternRelativeDate U_ICU_ENTRY_POINT_RENAME(udat_toPatternRelativeDate)
868#define udat_toPatternRelativeTime U_ICU_ENTRY_POINT_RENAME(udat_toPatternRelativeTime)
Craig Cornelius103e9ff2012-10-09 17:03:29 -0700869#define udat_unregisterOpener U_ICU_ENTRY_POINT_RENAME(udat_unregisterOpener)
claireho50294ea2010-05-03 15:44:48 -0700870#define udata_checkCommonData U_ICU_ENTRY_POINT_RENAME(udata_checkCommonData)
871#define udata_close U_ICU_ENTRY_POINT_RENAME(udata_close)
872#define udata_closeSwapper U_ICU_ENTRY_POINT_RENAME(udata_closeSwapper)
873#define udata_getHeaderSize U_ICU_ENTRY_POINT_RENAME(udata_getHeaderSize)
874#define udata_getInfo U_ICU_ENTRY_POINT_RENAME(udata_getInfo)
875#define udata_getInfoSize U_ICU_ENTRY_POINT_RENAME(udata_getInfoSize)
876#define udata_getLength U_ICU_ENTRY_POINT_RENAME(udata_getLength)
877#define udata_getMemory U_ICU_ENTRY_POINT_RENAME(udata_getMemory)
878#define udata_getRawMemory U_ICU_ENTRY_POINT_RENAME(udata_getRawMemory)
879#define udata_open U_ICU_ENTRY_POINT_RENAME(udata_open)
880#define udata_openChoice U_ICU_ENTRY_POINT_RENAME(udata_openChoice)
881#define udata_openSwapper U_ICU_ENTRY_POINT_RENAME(udata_openSwapper)
882#define udata_openSwapperForInputData U_ICU_ENTRY_POINT_RENAME(udata_openSwapperForInputData)
883#define udata_printError U_ICU_ENTRY_POINT_RENAME(udata_printError)
884#define udata_readInt16 U_ICU_ENTRY_POINT_RENAME(udata_readInt16)
885#define udata_readInt32 U_ICU_ENTRY_POINT_RENAME(udata_readInt32)
886#define udata_setAppData U_ICU_ENTRY_POINT_RENAME(udata_setAppData)
887#define udata_setCommonData U_ICU_ENTRY_POINT_RENAME(udata_setCommonData)
888#define udata_setFileAccess U_ICU_ENTRY_POINT_RENAME(udata_setFileAccess)
889#define udata_swapDataHeader U_ICU_ENTRY_POINT_RENAME(udata_swapDataHeader)
890#define udata_swapInvStringBlock U_ICU_ENTRY_POINT_RENAME(udata_swapInvStringBlock)
891#define udatpg_addPattern U_ICU_ENTRY_POINT_RENAME(udatpg_addPattern)
892#define udatpg_clone U_ICU_ENTRY_POINT_RENAME(udatpg_clone)
893#define udatpg_close U_ICU_ENTRY_POINT_RENAME(udatpg_close)
894#define udatpg_getAppendItemFormat U_ICU_ENTRY_POINT_RENAME(udatpg_getAppendItemFormat)
895#define udatpg_getAppendItemName U_ICU_ENTRY_POINT_RENAME(udatpg_getAppendItemName)
896#define udatpg_getBaseSkeleton U_ICU_ENTRY_POINT_RENAME(udatpg_getBaseSkeleton)
897#define udatpg_getBestPattern U_ICU_ENTRY_POINT_RENAME(udatpg_getBestPattern)
898#define udatpg_getBestPatternWithOptions U_ICU_ENTRY_POINT_RENAME(udatpg_getBestPatternWithOptions)
899#define udatpg_getDateTimeFormat U_ICU_ENTRY_POINT_RENAME(udatpg_getDateTimeFormat)
900#define udatpg_getDecimal U_ICU_ENTRY_POINT_RENAME(udatpg_getDecimal)
Victor Chang82493902020-12-23 17:27:56 +0000901#define udatpg_getDefaultHourCycle U_ICU_ENTRY_POINT_RENAME(udatpg_getDefaultHourCycle)
Fredrik Roubert8785a572018-03-26 20:54:58 +0200902#define udatpg_getFieldDisplayName U_ICU_ENTRY_POINT_RENAME(udatpg_getFieldDisplayName)
claireho50294ea2010-05-03 15:44:48 -0700903#define udatpg_getPatternForSkeleton U_ICU_ENTRY_POINT_RENAME(udatpg_getPatternForSkeleton)
904#define udatpg_getSkeleton U_ICU_ENTRY_POINT_RENAME(udatpg_getSkeleton)
905#define udatpg_open U_ICU_ENTRY_POINT_RENAME(udatpg_open)
906#define udatpg_openBaseSkeletons U_ICU_ENTRY_POINT_RENAME(udatpg_openBaseSkeletons)
907#define udatpg_openEmpty U_ICU_ENTRY_POINT_RENAME(udatpg_openEmpty)
908#define udatpg_openSkeletons U_ICU_ENTRY_POINT_RENAME(udatpg_openSkeletons)
909#define udatpg_replaceFieldTypes U_ICU_ENTRY_POINT_RENAME(udatpg_replaceFieldTypes)
910#define udatpg_replaceFieldTypesWithOptions U_ICU_ENTRY_POINT_RENAME(udatpg_replaceFieldTypesWithOptions)
911#define udatpg_setAppendItemFormat U_ICU_ENTRY_POINT_RENAME(udatpg_setAppendItemFormat)
912#define udatpg_setAppendItemName U_ICU_ENTRY_POINT_RENAME(udatpg_setAppendItemName)
913#define udatpg_setDateTimeFormat U_ICU_ENTRY_POINT_RENAME(udatpg_setDateTimeFormat)
914#define udatpg_setDecimal U_ICU_ENTRY_POINT_RENAME(udatpg_setDecimal)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800915#define udict_swap U_ICU_ENTRY_POINT_RENAME(udict_swap)
clairehob26ce3a2012-01-10 17:54:41 -0800916#define udtitvfmt_close U_ICU_ENTRY_POINT_RENAME(udtitvfmt_close)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100917#define udtitvfmt_closeResult U_ICU_ENTRY_POINT_RENAME(udtitvfmt_closeResult)
clairehob26ce3a2012-01-10 17:54:41 -0800918#define udtitvfmt_format U_ICU_ENTRY_POINT_RENAME(udtitvfmt_format)
Victor Chang82493902020-12-23 17:27:56 +0000919#define udtitvfmt_formatCalendarToResult U_ICU_ENTRY_POINT_RENAME(udtitvfmt_formatCalendarToResult)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100920#define udtitvfmt_formatToResult U_ICU_ENTRY_POINT_RENAME(udtitvfmt_formatToResult)
Victor Chang978167a2021-01-18 17:56:33 +0000921#define udtitvfmt_getContext U_ICU_ENTRY_POINT_RENAME(udtitvfmt_getContext)
clairehob26ce3a2012-01-10 17:54:41 -0800922#define udtitvfmt_open U_ICU_ENTRY_POINT_RENAME(udtitvfmt_open)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100923#define udtitvfmt_openResult U_ICU_ENTRY_POINT_RENAME(udtitvfmt_openResult)
924#define udtitvfmt_resultAsValue U_ICU_ENTRY_POINT_RENAME(udtitvfmt_resultAsValue)
Victor Chang978167a2021-01-18 17:56:33 +0000925#define udtitvfmt_setContext U_ICU_ENTRY_POINT_RENAME(udtitvfmt_setContext)
claireho50294ea2010-05-03 15:44:48 -0700926#define uenum_close U_ICU_ENTRY_POINT_RENAME(uenum_close)
927#define uenum_count U_ICU_ENTRY_POINT_RENAME(uenum_count)
928#define uenum_next U_ICU_ENTRY_POINT_RENAME(uenum_next)
929#define uenum_nextDefault U_ICU_ENTRY_POINT_RENAME(uenum_nextDefault)
930#define uenum_openCharStringsEnumeration U_ICU_ENTRY_POINT_RENAME(uenum_openCharStringsEnumeration)
931#define uenum_openFromStringEnumeration U_ICU_ENTRY_POINT_RENAME(uenum_openFromStringEnumeration)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800932#define uenum_openUCharStringsEnumeration U_ICU_ENTRY_POINT_RENAME(uenum_openUCharStringsEnumeration)
claireho50294ea2010-05-03 15:44:48 -0700933#define uenum_reset U_ICU_ENTRY_POINT_RENAME(uenum_reset)
934#define uenum_unext U_ICU_ENTRY_POINT_RENAME(uenum_unext)
935#define uenum_unextDefault U_ICU_ENTRY_POINT_RENAME(uenum_unextDefault)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +0100936#define ufieldpositer_close U_ICU_ENTRY_POINT_RENAME(ufieldpositer_close)
937#define ufieldpositer_next U_ICU_ENTRY_POINT_RENAME(ufieldpositer_next)
938#define ufieldpositer_open U_ICU_ENTRY_POINT_RENAME(ufieldpositer_open)
claireho50294ea2010-05-03 15:44:48 -0700939#define ufile_getch U_ICU_ENTRY_POINT_RENAME(ufile_getch)
940#define ufile_getch32 U_ICU_ENTRY_POINT_RENAME(ufile_getch32)
ccornelius59d709d2014-02-20 10:29:46 -0800941#define ufmt_close U_ICU_ENTRY_POINT_RENAME(ufmt_close)
ccornelius59d709d2014-02-20 10:29:46 -0800942#define ufmt_getArrayItemByIndex U_ICU_ENTRY_POINT_RENAME(ufmt_getArrayItemByIndex)
943#define ufmt_getArrayLength U_ICU_ENTRY_POINT_RENAME(ufmt_getArrayLength)
944#define ufmt_getDate U_ICU_ENTRY_POINT_RENAME(ufmt_getDate)
945#define ufmt_getDecNumChars U_ICU_ENTRY_POINT_RENAME(ufmt_getDecNumChars)
946#define ufmt_getDouble U_ICU_ENTRY_POINT_RENAME(ufmt_getDouble)
947#define ufmt_getInt64 U_ICU_ENTRY_POINT_RENAME(ufmt_getInt64)
948#define ufmt_getLong U_ICU_ENTRY_POINT_RENAME(ufmt_getLong)
949#define ufmt_getObject U_ICU_ENTRY_POINT_RENAME(ufmt_getObject)
950#define ufmt_getType U_ICU_ENTRY_POINT_RENAME(ufmt_getType)
951#define ufmt_getUChars U_ICU_ENTRY_POINT_RENAME(ufmt_getUChars)
952#define ufmt_isNumeric U_ICU_ENTRY_POINT_RENAME(ufmt_isNumeric)
ccornelius59d709d2014-02-20 10:29:46 -0800953#define ufmt_open U_ICU_ENTRY_POINT_RENAME(ufmt_open)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +0100954#define ufmtval_getString U_ICU_ENTRY_POINT_RENAME(ufmtval_getString)
955#define ufmtval_nextPosition U_ICU_ENTRY_POINT_RENAME(ufmtval_nextPosition)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -0800956#define ugender_getInstance U_ICU_ENTRY_POINT_RENAME(ugender_getInstance)
957#define ugender_getListGender U_ICU_ENTRY_POINT_RENAME(ugender_getListGender)
claireho50294ea2010-05-03 15:44:48 -0700958#define uhash_close U_ICU_ENTRY_POINT_RENAME(uhash_close)
959#define uhash_compareCaselessUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_compareCaselessUnicodeString)
960#define uhash_compareChars U_ICU_ENTRY_POINT_RENAME(uhash_compareChars)
961#define uhash_compareIChars U_ICU_ENTRY_POINT_RENAME(uhash_compareIChars)
962#define uhash_compareLong U_ICU_ENTRY_POINT_RENAME(uhash_compareLong)
Craig Cornelius83933352013-06-14 14:20:29 -0700963#define uhash_compareScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_compareScriptSet)
claireho50294ea2010-05-03 15:44:48 -0700964#define uhash_compareUChars U_ICU_ENTRY_POINT_RENAME(uhash_compareUChars)
965#define uhash_compareUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_compareUnicodeString)
966#define uhash_count U_ICU_ENTRY_POINT_RENAME(uhash_count)
967#define uhash_deleteHashtable U_ICU_ENTRY_POINT_RENAME(uhash_deleteHashtable)
Craig Cornelius83933352013-06-14 14:20:29 -0700968#define uhash_deleteScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_deleteScriptSet)
claireho50294ea2010-05-03 15:44:48 -0700969#define uhash_equals U_ICU_ENTRY_POINT_RENAME(uhash_equals)
Craig Cornelius83933352013-06-14 14:20:29 -0700970#define uhash_equalsScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_equalsScriptSet)
claireho50294ea2010-05-03 15:44:48 -0700971#define uhash_find U_ICU_ENTRY_POINT_RENAME(uhash_find)
claireho50294ea2010-05-03 15:44:48 -0700972#define uhash_get U_ICU_ENTRY_POINT_RENAME(uhash_get)
973#define uhash_geti U_ICU_ENTRY_POINT_RENAME(uhash_geti)
974#define uhash_hashCaselessUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_hashCaselessUnicodeString)
975#define uhash_hashChars U_ICU_ENTRY_POINT_RENAME(uhash_hashChars)
976#define uhash_hashIChars U_ICU_ENTRY_POINT_RENAME(uhash_hashIChars)
977#define uhash_hashLong U_ICU_ENTRY_POINT_RENAME(uhash_hashLong)
Craig Cornelius83933352013-06-14 14:20:29 -0700978#define uhash_hashScriptSet U_ICU_ENTRY_POINT_RENAME(uhash_hashScriptSet)
claireho50294ea2010-05-03 15:44:48 -0700979#define uhash_hashUChars U_ICU_ENTRY_POINT_RENAME(uhash_hashUChars)
claireho50294ea2010-05-03 15:44:48 -0700980#define uhash_hashUnicodeString U_ICU_ENTRY_POINT_RENAME(uhash_hashUnicodeString)
981#define uhash_iget U_ICU_ENTRY_POINT_RENAME(uhash_iget)
982#define uhash_igeti U_ICU_ENTRY_POINT_RENAME(uhash_igeti)
983#define uhash_init U_ICU_ENTRY_POINT_RENAME(uhash_init)
Fredrik Roubertffdc27e2017-11-27 19:42:42 +0100984#define uhash_initSize U_ICU_ENTRY_POINT_RENAME(uhash_initSize)
claireho50294ea2010-05-03 15:44:48 -0700985#define uhash_iput U_ICU_ENTRY_POINT_RENAME(uhash_iput)
986#define uhash_iputi U_ICU_ENTRY_POINT_RENAME(uhash_iputi)
987#define uhash_iremove U_ICU_ENTRY_POINT_RENAME(uhash_iremove)
988#define uhash_iremovei U_ICU_ENTRY_POINT_RENAME(uhash_iremovei)
989#define uhash_nextElement U_ICU_ENTRY_POINT_RENAME(uhash_nextElement)
990#define uhash_open U_ICU_ENTRY_POINT_RENAME(uhash_open)
991#define uhash_openSize U_ICU_ENTRY_POINT_RENAME(uhash_openSize)
992#define uhash_put U_ICU_ENTRY_POINT_RENAME(uhash_put)
993#define uhash_puti U_ICU_ENTRY_POINT_RENAME(uhash_puti)
994#define uhash_remove U_ICU_ENTRY_POINT_RENAME(uhash_remove)
995#define uhash_removeAll U_ICU_ENTRY_POINT_RENAME(uhash_removeAll)
996#define uhash_removeElement U_ICU_ENTRY_POINT_RENAME(uhash_removeElement)
997#define uhash_removei U_ICU_ENTRY_POINT_RENAME(uhash_removei)
998#define uhash_setKeyComparator U_ICU_ENTRY_POINT_RENAME(uhash_setKeyComparator)
999#define uhash_setKeyDeleter U_ICU_ENTRY_POINT_RENAME(uhash_setKeyDeleter)
1000#define uhash_setKeyHasher U_ICU_ENTRY_POINT_RENAME(uhash_setKeyHasher)
1001#define uhash_setResizePolicy U_ICU_ENTRY_POINT_RENAME(uhash_setResizePolicy)
1002#define uhash_setValueComparator U_ICU_ENTRY_POINT_RENAME(uhash_setValueComparator)
1003#define uhash_setValueDeleter U_ICU_ENTRY_POINT_RENAME(uhash_setValueDeleter)
1004#define uidna_IDNToASCII U_ICU_ENTRY_POINT_RENAME(uidna_IDNToASCII)
1005#define uidna_IDNToUnicode U_ICU_ENTRY_POINT_RENAME(uidna_IDNToUnicode)
claireho27f65472011-06-09 11:11:49 -07001006#define uidna_close U_ICU_ENTRY_POINT_RENAME(uidna_close)
claireho50294ea2010-05-03 15:44:48 -07001007#define uidna_compare U_ICU_ENTRY_POINT_RENAME(uidna_compare)
claireho27f65472011-06-09 11:11:49 -07001008#define uidna_labelToASCII U_ICU_ENTRY_POINT_RENAME(uidna_labelToASCII)
1009#define uidna_labelToASCII_UTF8 U_ICU_ENTRY_POINT_RENAME(uidna_labelToASCII_UTF8)
1010#define uidna_labelToUnicode U_ICU_ENTRY_POINT_RENAME(uidna_labelToUnicode)
1011#define uidna_labelToUnicodeUTF8 U_ICU_ENTRY_POINT_RENAME(uidna_labelToUnicodeUTF8)
1012#define uidna_nameToASCII U_ICU_ENTRY_POINT_RENAME(uidna_nameToASCII)
1013#define uidna_nameToASCII_UTF8 U_ICU_ENTRY_POINT_RENAME(uidna_nameToASCII_UTF8)
1014#define uidna_nameToUnicode U_ICU_ENTRY_POINT_RENAME(uidna_nameToUnicode)
1015#define uidna_nameToUnicodeUTF8 U_ICU_ENTRY_POINT_RENAME(uidna_nameToUnicodeUTF8)
1016#define uidna_openUTS46 U_ICU_ENTRY_POINT_RENAME(uidna_openUTS46)
claireho50294ea2010-05-03 15:44:48 -07001017#define uidna_toASCII U_ICU_ENTRY_POINT_RENAME(uidna_toASCII)
1018#define uidna_toUnicode U_ICU_ENTRY_POINT_RENAME(uidna_toUnicode)
1019#define uiter_current32 U_ICU_ENTRY_POINT_RENAME(uiter_current32)
1020#define uiter_getState U_ICU_ENTRY_POINT_RENAME(uiter_getState)
1021#define uiter_next32 U_ICU_ENTRY_POINT_RENAME(uiter_next32)
1022#define uiter_previous32 U_ICU_ENTRY_POINT_RENAME(uiter_previous32)
1023#define uiter_setCharacterIterator U_ICU_ENTRY_POINT_RENAME(uiter_setCharacterIterator)
1024#define uiter_setReplaceable U_ICU_ENTRY_POINT_RENAME(uiter_setReplaceable)
1025#define uiter_setState U_ICU_ENTRY_POINT_RENAME(uiter_setState)
1026#define uiter_setString U_ICU_ENTRY_POINT_RENAME(uiter_setString)
1027#define uiter_setUTF16BE U_ICU_ENTRY_POINT_RENAME(uiter_setUTF16BE)
1028#define uiter_setUTF8 U_ICU_ENTRY_POINT_RENAME(uiter_setUTF8)
1029#define uldn_close U_ICU_ENTRY_POINT_RENAME(uldn_close)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -08001030#define uldn_getContext U_ICU_ENTRY_POINT_RENAME(uldn_getContext)
claireho50294ea2010-05-03 15:44:48 -07001031#define uldn_getDialectHandling U_ICU_ENTRY_POINT_RENAME(uldn_getDialectHandling)
1032#define uldn_getLocale U_ICU_ENTRY_POINT_RENAME(uldn_getLocale)
1033#define uldn_keyDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_keyDisplayName)
1034#define uldn_keyValueDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_keyValueDisplayName)
1035#define uldn_languageDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_languageDisplayName)
1036#define uldn_localeDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_localeDisplayName)
1037#define uldn_open U_ICU_ENTRY_POINT_RENAME(uldn_open)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -08001038#define uldn_openForContext U_ICU_ENTRY_POINT_RENAME(uldn_openForContext)
claireho50294ea2010-05-03 15:44:48 -07001039#define uldn_regionDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_regionDisplayName)
1040#define uldn_scriptCodeDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_scriptCodeDisplayName)
1041#define uldn_scriptDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_scriptDisplayName)
1042#define uldn_variantDisplayName U_ICU_ENTRY_POINT_RENAME(uldn_variantDisplayName)
1043#define ulist_addItemBeginList U_ICU_ENTRY_POINT_RENAME(ulist_addItemBeginList)
1044#define ulist_addItemEndList U_ICU_ENTRY_POINT_RENAME(ulist_addItemEndList)
1045#define ulist_close_keyword_values_iterator U_ICU_ENTRY_POINT_RENAME(ulist_close_keyword_values_iterator)
1046#define ulist_containsString U_ICU_ENTRY_POINT_RENAME(ulist_containsString)
1047#define ulist_count_keyword_values U_ICU_ENTRY_POINT_RENAME(ulist_count_keyword_values)
1048#define ulist_createEmptyList U_ICU_ENTRY_POINT_RENAME(ulist_createEmptyList)
1049#define ulist_deleteList U_ICU_ENTRY_POINT_RENAME(ulist_deleteList)
1050#define ulist_getListFromEnum U_ICU_ENTRY_POINT_RENAME(ulist_getListFromEnum)
1051#define ulist_getListSize U_ICU_ENTRY_POINT_RENAME(ulist_getListSize)
1052#define ulist_getNext U_ICU_ENTRY_POINT_RENAME(ulist_getNext)
1053#define ulist_next_keyword_value U_ICU_ENTRY_POINT_RENAME(ulist_next_keyword_value)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001054#define ulist_removeString U_ICU_ENTRY_POINT_RENAME(ulist_removeString)
claireho50294ea2010-05-03 15:44:48 -07001055#define ulist_resetList U_ICU_ENTRY_POINT_RENAME(ulist_resetList)
1056#define ulist_reset_keyword_values_iterator U_ICU_ENTRY_POINT_RENAME(ulist_reset_keyword_values_iterator)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +01001057#define ulistfmt_close U_ICU_ENTRY_POINT_RENAME(ulistfmt_close)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001058#define ulistfmt_closeResult U_ICU_ENTRY_POINT_RENAME(ulistfmt_closeResult)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +01001059#define ulistfmt_format U_ICU_ENTRY_POINT_RENAME(ulistfmt_format)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001060#define ulistfmt_formatStringsToResult U_ICU_ENTRY_POINT_RENAME(ulistfmt_formatStringsToResult)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +01001061#define ulistfmt_open U_ICU_ENTRY_POINT_RENAME(ulistfmt_open)
Victor Chang82493902020-12-23 17:27:56 +00001062#define ulistfmt_openForType U_ICU_ENTRY_POINT_RENAME(ulistfmt_openForType)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001063#define ulistfmt_openResult U_ICU_ENTRY_POINT_RENAME(ulistfmt_openResult)
1064#define ulistfmt_resultAsValue U_ICU_ENTRY_POINT_RENAME(ulistfmt_resultAsValue)
claireho50294ea2010-05-03 15:44:48 -07001065#define uloc_acceptLanguage U_ICU_ENTRY_POINT_RENAME(uloc_acceptLanguage)
1066#define uloc_acceptLanguageFromHTTP U_ICU_ENTRY_POINT_RENAME(uloc_acceptLanguageFromHTTP)
1067#define uloc_addLikelySubtags U_ICU_ENTRY_POINT_RENAME(uloc_addLikelySubtags)
1068#define uloc_canonicalize U_ICU_ENTRY_POINT_RENAME(uloc_canonicalize)
1069#define uloc_countAvailable U_ICU_ENTRY_POINT_RENAME(uloc_countAvailable)
1070#define uloc_forLanguageTag U_ICU_ENTRY_POINT_RENAME(uloc_forLanguageTag)
1071#define uloc_getAvailable U_ICU_ENTRY_POINT_RENAME(uloc_getAvailable)
1072#define uloc_getBaseName U_ICU_ENTRY_POINT_RENAME(uloc_getBaseName)
1073#define uloc_getCharacterOrientation U_ICU_ENTRY_POINT_RENAME(uloc_getCharacterOrientation)
1074#define uloc_getCountry U_ICU_ENTRY_POINT_RENAME(uloc_getCountry)
1075#define uloc_getCurrentCountryID U_ICU_ENTRY_POINT_RENAME(uloc_getCurrentCountryID)
1076#define uloc_getCurrentLanguageID U_ICU_ENTRY_POINT_RENAME(uloc_getCurrentLanguageID)
1077#define uloc_getDefault U_ICU_ENTRY_POINT_RENAME(uloc_getDefault)
1078#define uloc_getDisplayCountry U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayCountry)
1079#define uloc_getDisplayKeyword U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayKeyword)
1080#define uloc_getDisplayKeywordValue U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayKeywordValue)
1081#define uloc_getDisplayLanguage U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayLanguage)
1082#define uloc_getDisplayName U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayName)
1083#define uloc_getDisplayScript U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayScript)
1084#define uloc_getDisplayVariant U_ICU_ENTRY_POINT_RENAME(uloc_getDisplayVariant)
1085#define uloc_getISO3Country U_ICU_ENTRY_POINT_RENAME(uloc_getISO3Country)
1086#define uloc_getISO3Language U_ICU_ENTRY_POINT_RENAME(uloc_getISO3Language)
1087#define uloc_getISOCountries U_ICU_ENTRY_POINT_RENAME(uloc_getISOCountries)
1088#define uloc_getISOLanguages U_ICU_ENTRY_POINT_RENAME(uloc_getISOLanguages)
1089#define uloc_getKeywordValue U_ICU_ENTRY_POINT_RENAME(uloc_getKeywordValue)
1090#define uloc_getLCID U_ICU_ENTRY_POINT_RENAME(uloc_getLCID)
1091#define uloc_getLanguage U_ICU_ENTRY_POINT_RENAME(uloc_getLanguage)
1092#define uloc_getLineOrientation U_ICU_ENTRY_POINT_RENAME(uloc_getLineOrientation)
1093#define uloc_getLocaleForLCID U_ICU_ENTRY_POINT_RENAME(uloc_getLocaleForLCID)
1094#define uloc_getName U_ICU_ENTRY_POINT_RENAME(uloc_getName)
1095#define uloc_getParent U_ICU_ENTRY_POINT_RENAME(uloc_getParent)
1096#define uloc_getScript U_ICU_ENTRY_POINT_RENAME(uloc_getScript)
1097#define uloc_getTableStringWithFallback U_ICU_ENTRY_POINT_RENAME(uloc_getTableStringWithFallback)
1098#define uloc_getVariant U_ICU_ENTRY_POINT_RENAME(uloc_getVariant)
ccorneliusf9878a22014-11-20 18:09:39 -08001099#define uloc_isRightToLeft U_ICU_ENTRY_POINT_RENAME(uloc_isRightToLeft)
claireho50294ea2010-05-03 15:44:48 -07001100#define uloc_minimizeSubtags U_ICU_ENTRY_POINT_RENAME(uloc_minimizeSubtags)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +00001101#define uloc_openAvailableByType U_ICU_ENTRY_POINT_RENAME(uloc_openAvailableByType)
claireho50294ea2010-05-03 15:44:48 -07001102#define uloc_openKeywordList U_ICU_ENTRY_POINT_RENAME(uloc_openKeywordList)
1103#define uloc_openKeywords U_ICU_ENTRY_POINT_RENAME(uloc_openKeywords)
1104#define uloc_setDefault U_ICU_ENTRY_POINT_RENAME(uloc_setDefault)
1105#define uloc_setKeywordValue U_ICU_ENTRY_POINT_RENAME(uloc_setKeywordValue)
1106#define uloc_toLanguageTag U_ICU_ENTRY_POINT_RENAME(uloc_toLanguageTag)
ccorneliusf9878a22014-11-20 18:09:39 -08001107#define uloc_toLegacyKey U_ICU_ENTRY_POINT_RENAME(uloc_toLegacyKey)
1108#define uloc_toLegacyType U_ICU_ENTRY_POINT_RENAME(uloc_toLegacyType)
1109#define uloc_toUnicodeLocaleKey U_ICU_ENTRY_POINT_RENAME(uloc_toUnicodeLocaleKey)
1110#define uloc_toUnicodeLocaleType U_ICU_ENTRY_POINT_RENAME(uloc_toUnicodeLocaleType)
claireho50294ea2010-05-03 15:44:48 -07001111#define ulocdata_close U_ICU_ENTRY_POINT_RENAME(ulocdata_close)
1112#define ulocdata_getCLDRVersion U_ICU_ENTRY_POINT_RENAME(ulocdata_getCLDRVersion)
1113#define ulocdata_getDelimiter U_ICU_ENTRY_POINT_RENAME(ulocdata_getDelimiter)
1114#define ulocdata_getExemplarSet U_ICU_ENTRY_POINT_RENAME(ulocdata_getExemplarSet)
1115#define ulocdata_getLocaleDisplayPattern U_ICU_ENTRY_POINT_RENAME(ulocdata_getLocaleDisplayPattern)
1116#define ulocdata_getLocaleSeparator U_ICU_ENTRY_POINT_RENAME(ulocdata_getLocaleSeparator)
1117#define ulocdata_getMeasurementSystem U_ICU_ENTRY_POINT_RENAME(ulocdata_getMeasurementSystem)
1118#define ulocdata_getNoSubstitute U_ICU_ENTRY_POINT_RENAME(ulocdata_getNoSubstitute)
1119#define ulocdata_getPaperSize U_ICU_ENTRY_POINT_RENAME(ulocdata_getPaperSize)
1120#define ulocdata_open U_ICU_ENTRY_POINT_RENAME(ulocdata_open)
1121#define ulocdata_setNoSubstitute U_ICU_ENTRY_POINT_RENAME(ulocdata_setNoSubstitute)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001122#define ulocimp_addLikelySubtags U_ICU_ENTRY_POINT_RENAME(ulocimp_addLikelySubtags)
Victor Chang82493902020-12-23 17:27:56 +00001123#define ulocimp_canonicalize U_ICU_ENTRY_POINT_RENAME(ulocimp_canonicalize)
Victor Chang4578a1c2018-10-22 04:26:58 +01001124#define ulocimp_forLanguageTag U_ICU_ENTRY_POINT_RENAME(ulocimp_forLanguageTag)
Victor Chang82493902020-12-23 17:27:56 +00001125#define ulocimp_getBaseName U_ICU_ENTRY_POINT_RENAME(ulocimp_getBaseName)
claireho50294ea2010-05-03 15:44:48 -07001126#define ulocimp_getCountry U_ICU_ENTRY_POINT_RENAME(ulocimp_getCountry)
Victor Chang978167a2021-01-18 17:56:33 +00001127#define ulocimp_getKeywordValue U_ICU_ENTRY_POINT_RENAME(ulocimp_getKeywordValue)
1128#define ulocimp_getKeywords U_ICU_ENTRY_POINT_RENAME(ulocimp_getKeywords)
1129#define ulocimp_getKnownCanonicalizedLocaleForTest U_ICU_ENTRY_POINT_RENAME(ulocimp_getKnownCanonicalizedLocaleForTest)
claireho50294ea2010-05-03 15:44:48 -07001130#define ulocimp_getLanguage U_ICU_ENTRY_POINT_RENAME(ulocimp_getLanguage)
Victor Chang82493902020-12-23 17:27:56 +00001131#define ulocimp_getName U_ICU_ENTRY_POINT_RENAME(ulocimp_getName)
Fredrik Roubert8de051c2016-03-10 13:13:27 +01001132#define ulocimp_getRegionForSupplementalData U_ICU_ENTRY_POINT_RENAME(ulocimp_getRegionForSupplementalData)
claireho50294ea2010-05-03 15:44:48 -07001133#define ulocimp_getScript U_ICU_ENTRY_POINT_RENAME(ulocimp_getScript)
Victor Chang978167a2021-01-18 17:56:33 +00001134#define ulocimp_isCanonicalizedLocaleForTest U_ICU_ENTRY_POINT_RENAME(ulocimp_isCanonicalizedLocaleForTest)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001135#define ulocimp_minimizeSubtags U_ICU_ENTRY_POINT_RENAME(ulocimp_minimizeSubtags)
ccorneliusf9878a22014-11-20 18:09:39 -08001136#define ulocimp_toBcpKey U_ICU_ENTRY_POINT_RENAME(ulocimp_toBcpKey)
1137#define ulocimp_toBcpType U_ICU_ENTRY_POINT_RENAME(ulocimp_toBcpType)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001138#define ulocimp_toLanguageTag U_ICU_ENTRY_POINT_RENAME(ulocimp_toLanguageTag)
ccorneliusf9878a22014-11-20 18:09:39 -08001139#define ulocimp_toLegacyKey U_ICU_ENTRY_POINT_RENAME(ulocimp_toLegacyKey)
1140#define ulocimp_toLegacyType U_ICU_ENTRY_POINT_RENAME(ulocimp_toLegacyType)
Victor Chang978167a2021-01-18 17:56:33 +00001141#define ultag_getTKeyStart U_ICU_ENTRY_POINT_RENAME(ultag_getTKeyStart)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001142#define ultag_isExtensionSubtags U_ICU_ENTRY_POINT_RENAME(ultag_isExtensionSubtags)
1143#define ultag_isLanguageSubtag U_ICU_ENTRY_POINT_RENAME(ultag_isLanguageSubtag)
1144#define ultag_isPrivateuseValueSubtags U_ICU_ENTRY_POINT_RENAME(ultag_isPrivateuseValueSubtags)
1145#define ultag_isRegionSubtag U_ICU_ENTRY_POINT_RENAME(ultag_isRegionSubtag)
1146#define ultag_isScriptSubtag U_ICU_ENTRY_POINT_RENAME(ultag_isScriptSubtag)
1147#define ultag_isTransformedExtensionSubtags U_ICU_ENTRY_POINT_RENAME(ultag_isTransformedExtensionSubtags)
1148#define ultag_isUnicodeExtensionSubtags U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeExtensionSubtags)
1149#define ultag_isUnicodeLocaleAttribute U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeLocaleAttribute)
1150#define ultag_isUnicodeLocaleAttributes U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeLocaleAttributes)
ccorneliusf9878a22014-11-20 18:09:39 -08001151#define ultag_isUnicodeLocaleKey U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeLocaleKey)
1152#define ultag_isUnicodeLocaleType U_ICU_ENTRY_POINT_RENAME(ultag_isUnicodeLocaleType)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001153#define ultag_isVariantSubtags U_ICU_ENTRY_POINT_RENAME(ultag_isVariantSubtags)
claireho50294ea2010-05-03 15:44:48 -07001154#define umsg_applyPattern U_ICU_ENTRY_POINT_RENAME(umsg_applyPattern)
1155#define umsg_autoQuoteApostrophe U_ICU_ENTRY_POINT_RENAME(umsg_autoQuoteApostrophe)
1156#define umsg_clone U_ICU_ENTRY_POINT_RENAME(umsg_clone)
1157#define umsg_close U_ICU_ENTRY_POINT_RENAME(umsg_close)
1158#define umsg_format U_ICU_ENTRY_POINT_RENAME(umsg_format)
1159#define umsg_getLocale U_ICU_ENTRY_POINT_RENAME(umsg_getLocale)
1160#define umsg_open U_ICU_ENTRY_POINT_RENAME(umsg_open)
1161#define umsg_parse U_ICU_ENTRY_POINT_RENAME(umsg_parse)
1162#define umsg_setLocale U_ICU_ENTRY_POINT_RENAME(umsg_setLocale)
1163#define umsg_toPattern U_ICU_ENTRY_POINT_RENAME(umsg_toPattern)
1164#define umsg_vformat U_ICU_ENTRY_POINT_RENAME(umsg_vformat)
1165#define umsg_vparse U_ICU_ENTRY_POINT_RENAME(umsg_vparse)
claireho50294ea2010-05-03 15:44:48 -07001166#define umtx_lock U_ICU_ENTRY_POINT_RENAME(umtx_lock)
1167#define umtx_unlock U_ICU_ENTRY_POINT_RENAME(umtx_unlock)
Victor Chang4578a1c2018-10-22 04:26:58 +01001168#define umutablecptrie_buildImmutable U_ICU_ENTRY_POINT_RENAME(umutablecptrie_buildImmutable)
1169#define umutablecptrie_clone U_ICU_ENTRY_POINT_RENAME(umutablecptrie_clone)
1170#define umutablecptrie_close U_ICU_ENTRY_POINT_RENAME(umutablecptrie_close)
1171#define umutablecptrie_fromUCPMap U_ICU_ENTRY_POINT_RENAME(umutablecptrie_fromUCPMap)
1172#define umutablecptrie_fromUCPTrie U_ICU_ENTRY_POINT_RENAME(umutablecptrie_fromUCPTrie)
1173#define umutablecptrie_get U_ICU_ENTRY_POINT_RENAME(umutablecptrie_get)
1174#define umutablecptrie_getRange U_ICU_ENTRY_POINT_RENAME(umutablecptrie_getRange)
1175#define umutablecptrie_open U_ICU_ENTRY_POINT_RENAME(umutablecptrie_open)
1176#define umutablecptrie_set U_ICU_ENTRY_POINT_RENAME(umutablecptrie_set)
1177#define umutablecptrie_setRange U_ICU_ENTRY_POINT_RENAME(umutablecptrie_setRange)
claireho50294ea2010-05-03 15:44:48 -07001178#define uniset_getUnicode32Instance U_ICU_ENTRY_POINT_RENAME(uniset_getUnicode32Instance)
1179#define unorm2_append U_ICU_ENTRY_POINT_RENAME(unorm2_append)
1180#define unorm2_close U_ICU_ENTRY_POINT_RENAME(unorm2_close)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001181#define unorm2_composePair U_ICU_ENTRY_POINT_RENAME(unorm2_composePair)
1182#define unorm2_getCombiningClass U_ICU_ENTRY_POINT_RENAME(unorm2_getCombiningClass)
claireho27f65472011-06-09 11:11:49 -07001183#define unorm2_getDecomposition U_ICU_ENTRY_POINT_RENAME(unorm2_getDecomposition)
claireho50294ea2010-05-03 15:44:48 -07001184#define unorm2_getInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getInstance)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001185#define unorm2_getNFCInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFCInstance)
1186#define unorm2_getNFDInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFDInstance)
1187#define unorm2_getNFKCCasefoldInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFKCCasefoldInstance)
1188#define unorm2_getNFKCInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFKCInstance)
1189#define unorm2_getNFKDInstance U_ICU_ENTRY_POINT_RENAME(unorm2_getNFKDInstance)
1190#define unorm2_getRawDecomposition U_ICU_ENTRY_POINT_RENAME(unorm2_getRawDecomposition)
claireho50294ea2010-05-03 15:44:48 -07001191#define unorm2_hasBoundaryAfter U_ICU_ENTRY_POINT_RENAME(unorm2_hasBoundaryAfter)
1192#define unorm2_hasBoundaryBefore U_ICU_ENTRY_POINT_RENAME(unorm2_hasBoundaryBefore)
1193#define unorm2_isInert U_ICU_ENTRY_POINT_RENAME(unorm2_isInert)
1194#define unorm2_isNormalized U_ICU_ENTRY_POINT_RENAME(unorm2_isNormalized)
1195#define unorm2_normalize U_ICU_ENTRY_POINT_RENAME(unorm2_normalize)
1196#define unorm2_normalizeSecondAndAppend U_ICU_ENTRY_POINT_RENAME(unorm2_normalizeSecondAndAppend)
1197#define unorm2_openFiltered U_ICU_ENTRY_POINT_RENAME(unorm2_openFiltered)
1198#define unorm2_quickCheck U_ICU_ENTRY_POINT_RENAME(unorm2_quickCheck)
1199#define unorm2_spanQuickCheckYes U_ICU_ENTRY_POINT_RENAME(unorm2_spanQuickCheckYes)
1200#define unorm2_swap U_ICU_ENTRY_POINT_RENAME(unorm2_swap)
claireho50294ea2010-05-03 15:44:48 -07001201#define unorm_compare U_ICU_ENTRY_POINT_RENAME(unorm_compare)
1202#define unorm_concatenate U_ICU_ENTRY_POINT_RENAME(unorm_concatenate)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001203#define unorm_getFCD16 U_ICU_ENTRY_POINT_RENAME(unorm_getFCD16)
claireho50294ea2010-05-03 15:44:48 -07001204#define unorm_getQuickCheck U_ICU_ENTRY_POINT_RENAME(unorm_getQuickCheck)
claireho50294ea2010-05-03 15:44:48 -07001205#define unorm_isNormalized U_ICU_ENTRY_POINT_RENAME(unorm_isNormalized)
1206#define unorm_isNormalizedWithOptions U_ICU_ENTRY_POINT_RENAME(unorm_isNormalizedWithOptions)
1207#define unorm_next U_ICU_ENTRY_POINT_RENAME(unorm_next)
1208#define unorm_normalize U_ICU_ENTRY_POINT_RENAME(unorm_normalize)
claireho50294ea2010-05-03 15:44:48 -07001209#define unorm_previous U_ICU_ENTRY_POINT_RENAME(unorm_previous)
1210#define unorm_quickCheck U_ICU_ENTRY_POINT_RENAME(unorm_quickCheck)
1211#define unorm_quickCheckWithOptions U_ICU_ENTRY_POINT_RENAME(unorm_quickCheckWithOptions)
claireho50294ea2010-05-03 15:44:48 -07001212#define unum_applyPattern U_ICU_ENTRY_POINT_RENAME(unum_applyPattern)
1213#define unum_clone U_ICU_ENTRY_POINT_RENAME(unum_clone)
1214#define unum_close U_ICU_ENTRY_POINT_RENAME(unum_close)
1215#define unum_countAvailable U_ICU_ENTRY_POINT_RENAME(unum_countAvailable)
1216#define unum_format U_ICU_ENTRY_POINT_RENAME(unum_format)
claireho27f65472011-06-09 11:11:49 -07001217#define unum_formatDecimal U_ICU_ENTRY_POINT_RENAME(unum_formatDecimal)
claireho50294ea2010-05-03 15:44:48 -07001218#define unum_formatDouble U_ICU_ENTRY_POINT_RENAME(unum_formatDouble)
1219#define unum_formatDoubleCurrency U_ICU_ENTRY_POINT_RENAME(unum_formatDoubleCurrency)
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001220#define unum_formatDoubleForFields U_ICU_ENTRY_POINT_RENAME(unum_formatDoubleForFields)
claireho50294ea2010-05-03 15:44:48 -07001221#define unum_formatInt64 U_ICU_ENTRY_POINT_RENAME(unum_formatInt64)
ccornelius59d709d2014-02-20 10:29:46 -08001222#define unum_formatUFormattable U_ICU_ENTRY_POINT_RENAME(unum_formatUFormattable)
claireho50294ea2010-05-03 15:44:48 -07001223#define unum_getAttribute U_ICU_ENTRY_POINT_RENAME(unum_getAttribute)
1224#define unum_getAvailable U_ICU_ENTRY_POINT_RENAME(unum_getAvailable)
ccorneliusfceb3982014-04-16 12:27:14 -07001225#define unum_getContext U_ICU_ENTRY_POINT_RENAME(unum_getContext)
claireho50294ea2010-05-03 15:44:48 -07001226#define unum_getDoubleAttribute U_ICU_ENTRY_POINT_RENAME(unum_getDoubleAttribute)
1227#define unum_getLocaleByType U_ICU_ENTRY_POINT_RENAME(unum_getLocaleByType)
1228#define unum_getSymbol U_ICU_ENTRY_POINT_RENAME(unum_getSymbol)
1229#define unum_getTextAttribute U_ICU_ENTRY_POINT_RENAME(unum_getTextAttribute)
1230#define unum_open U_ICU_ENTRY_POINT_RENAME(unum_open)
1231#define unum_parse U_ICU_ENTRY_POINT_RENAME(unum_parse)
claireho27f65472011-06-09 11:11:49 -07001232#define unum_parseDecimal U_ICU_ENTRY_POINT_RENAME(unum_parseDecimal)
claireho50294ea2010-05-03 15:44:48 -07001233#define unum_parseDouble U_ICU_ENTRY_POINT_RENAME(unum_parseDouble)
1234#define unum_parseDoubleCurrency U_ICU_ENTRY_POINT_RENAME(unum_parseDoubleCurrency)
1235#define unum_parseInt64 U_ICU_ENTRY_POINT_RENAME(unum_parseInt64)
ccornelius59d709d2014-02-20 10:29:46 -08001236#define unum_parseToUFormattable U_ICU_ENTRY_POINT_RENAME(unum_parseToUFormattable)
claireho50294ea2010-05-03 15:44:48 -07001237#define unum_setAttribute U_ICU_ENTRY_POINT_RENAME(unum_setAttribute)
ccorneliusfceb3982014-04-16 12:27:14 -07001238#define unum_setContext U_ICU_ENTRY_POINT_RENAME(unum_setContext)
claireho50294ea2010-05-03 15:44:48 -07001239#define unum_setDoubleAttribute U_ICU_ENTRY_POINT_RENAME(unum_setDoubleAttribute)
1240#define unum_setSymbol U_ICU_ENTRY_POINT_RENAME(unum_setSymbol)
1241#define unum_setTextAttribute U_ICU_ENTRY_POINT_RENAME(unum_setTextAttribute)
1242#define unum_toPattern U_ICU_ENTRY_POINT_RENAME(unum_toPattern)
Fredrik Roubert57b72de2018-06-21 14:29:02 +02001243#define unumf_close U_ICU_ENTRY_POINT_RENAME(unumf_close)
1244#define unumf_closeResult U_ICU_ENTRY_POINT_RENAME(unumf_closeResult)
1245#define unumf_formatDecimal U_ICU_ENTRY_POINT_RENAME(unumf_formatDecimal)
1246#define unumf_formatDouble U_ICU_ENTRY_POINT_RENAME(unumf_formatDouble)
1247#define unumf_formatInt U_ICU_ENTRY_POINT_RENAME(unumf_formatInt)
1248#define unumf_openForSkeletonAndLocale U_ICU_ENTRY_POINT_RENAME(unumf_openForSkeletonAndLocale)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001249#define unumf_openForSkeletonAndLocaleWithError U_ICU_ENTRY_POINT_RENAME(unumf_openForSkeletonAndLocaleWithError)
Fredrik Roubert57b72de2018-06-21 14:29:02 +02001250#define unumf_openResult U_ICU_ENTRY_POINT_RENAME(unumf_openResult)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001251#define unumf_resultAsValue U_ICU_ENTRY_POINT_RENAME(unumf_resultAsValue)
Fredrik Roubert57b72de2018-06-21 14:29:02 +02001252#define unumf_resultGetAllFieldPositions U_ICU_ENTRY_POINT_RENAME(unumf_resultGetAllFieldPositions)
1253#define unumf_resultNextFieldPosition U_ICU_ENTRY_POINT_RENAME(unumf_resultNextFieldPosition)
Victor Chang978167a2021-01-18 17:56:33 +00001254#define unumf_resultToDecimalNumber U_ICU_ENTRY_POINT_RENAME(unumf_resultToDecimalNumber)
Fredrik Roubert57b72de2018-06-21 14:29:02 +02001255#define unumf_resultToString U_ICU_ENTRY_POINT_RENAME(unumf_resultToString)
Victor Chang978167a2021-01-18 17:56:33 +00001256#define unumrf_close U_ICU_ENTRY_POINT_RENAME(unumrf_close)
1257#define unumrf_closeResult U_ICU_ENTRY_POINT_RENAME(unumrf_closeResult)
1258#define unumrf_formatDecimalRange U_ICU_ENTRY_POINT_RENAME(unumrf_formatDecimalRange)
1259#define unumrf_formatDoubleRange U_ICU_ENTRY_POINT_RENAME(unumrf_formatDoubleRange)
1260#define unumrf_openForSkeletonWithCollapseAndIdentityFallback U_ICU_ENTRY_POINT_RENAME(unumrf_openForSkeletonWithCollapseAndIdentityFallback)
1261#define unumrf_openResult U_ICU_ENTRY_POINT_RENAME(unumrf_openResult)
1262#define unumrf_resultAsValue U_ICU_ENTRY_POINT_RENAME(unumrf_resultAsValue)
1263#define unumrf_resultGetFirstDecimalNumber U_ICU_ENTRY_POINT_RENAME(unumrf_resultGetFirstDecimalNumber)
1264#define unumrf_resultGetIdentityResult U_ICU_ENTRY_POINT_RENAME(unumrf_resultGetIdentityResult)
1265#define unumrf_resultGetSecondDecimalNumber U_ICU_ENTRY_POINT_RENAME(unumrf_resultGetSecondDecimalNumber)
ccornelius59d709d2014-02-20 10:29:46 -08001266#define unumsys_close U_ICU_ENTRY_POINT_RENAME(unumsys_close)
1267#define unumsys_getDescription U_ICU_ENTRY_POINT_RENAME(unumsys_getDescription)
1268#define unumsys_getName U_ICU_ENTRY_POINT_RENAME(unumsys_getName)
1269#define unumsys_getRadix U_ICU_ENTRY_POINT_RENAME(unumsys_getRadix)
1270#define unumsys_isAlgorithmic U_ICU_ENTRY_POINT_RENAME(unumsys_isAlgorithmic)
1271#define unumsys_open U_ICU_ENTRY_POINT_RENAME(unumsys_open)
1272#define unumsys_openAvailableNames U_ICU_ENTRY_POINT_RENAME(unumsys_openAvailableNames)
1273#define unumsys_openByName U_ICU_ENTRY_POINT_RENAME(unumsys_openByName)
clairehob26ce3a2012-01-10 17:54:41 -08001274#define uplrules_close U_ICU_ENTRY_POINT_RENAME(uplrules_close)
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001275#define uplrules_getKeywords U_ICU_ENTRY_POINT_RENAME(uplrules_getKeywords)
clairehob26ce3a2012-01-10 17:54:41 -08001276#define uplrules_open U_ICU_ENTRY_POINT_RENAME(uplrules_open)
Craig Cornelius54dcd9b2013-02-15 14:03:14 -08001277#define uplrules_openForType U_ICU_ENTRY_POINT_RENAME(uplrules_openForType)
clairehob26ce3a2012-01-10 17:54:41 -08001278#define uplrules_select U_ICU_ENTRY_POINT_RENAME(uplrules_select)
Victor Chang978167a2021-01-18 17:56:33 +00001279#define uplrules_selectForRange U_ICU_ENTRY_POINT_RENAME(uplrules_selectForRange)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001280#define uplrules_selectFormatted U_ICU_ENTRY_POINT_RENAME(uplrules_selectFormatted)
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001281#define uplrules_selectWithFormat U_ICU_ENTRY_POINT_RENAME(uplrules_selectWithFormat)
claireho50294ea2010-05-03 15:44:48 -07001282#define uplug_closeLibrary U_ICU_ENTRY_POINT_RENAME(uplug_closeLibrary)
1283#define uplug_findLibrary U_ICU_ENTRY_POINT_RENAME(uplug_findLibrary)
1284#define uplug_getConfiguration U_ICU_ENTRY_POINT_RENAME(uplug_getConfiguration)
1285#define uplug_getContext U_ICU_ENTRY_POINT_RENAME(uplug_getContext)
1286#define uplug_getCurrentLevel U_ICU_ENTRY_POINT_RENAME(uplug_getCurrentLevel)
1287#define uplug_getLibrary U_ICU_ENTRY_POINT_RENAME(uplug_getLibrary)
1288#define uplug_getLibraryName U_ICU_ENTRY_POINT_RENAME(uplug_getLibraryName)
1289#define uplug_getPlugInternal U_ICU_ENTRY_POINT_RENAME(uplug_getPlugInternal)
1290#define uplug_getPlugLevel U_ICU_ENTRY_POINT_RENAME(uplug_getPlugLevel)
1291#define uplug_getPlugLoadStatus U_ICU_ENTRY_POINT_RENAME(uplug_getPlugLoadStatus)
1292#define uplug_getPlugName U_ICU_ENTRY_POINT_RENAME(uplug_getPlugName)
1293#define uplug_getPluginFile U_ICU_ENTRY_POINT_RENAME(uplug_getPluginFile)
1294#define uplug_getSymbolName U_ICU_ENTRY_POINT_RENAME(uplug_getSymbolName)
1295#define uplug_init U_ICU_ENTRY_POINT_RENAME(uplug_init)
1296#define uplug_loadPlugFromEntrypoint U_ICU_ENTRY_POINT_RENAME(uplug_loadPlugFromEntrypoint)
1297#define uplug_loadPlugFromLibrary U_ICU_ENTRY_POINT_RENAME(uplug_loadPlugFromLibrary)
1298#define uplug_nextPlug U_ICU_ENTRY_POINT_RENAME(uplug_nextPlug)
1299#define uplug_openLibrary U_ICU_ENTRY_POINT_RENAME(uplug_openLibrary)
1300#define uplug_removePlug U_ICU_ENTRY_POINT_RENAME(uplug_removePlug)
1301#define uplug_setContext U_ICU_ENTRY_POINT_RENAME(uplug_setContext)
1302#define uplug_setPlugLevel U_ICU_ENTRY_POINT_RENAME(uplug_setPlugLevel)
1303#define uplug_setPlugName U_ICU_ENTRY_POINT_RENAME(uplug_setPlugName)
1304#define uplug_setPlugNoUnload U_ICU_ENTRY_POINT_RENAME(uplug_setPlugNoUnload)
Victor Chang4578a1c2018-10-22 04:26:58 +01001305#define uprops_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(uprops_addPropertyStarts)
claireho50294ea2010-05-03 15:44:48 -07001306#define uprops_getSource U_ICU_ENTRY_POINT_RENAME(uprops_getSource)
1307#define upropsvec_addPropertyStarts U_ICU_ENTRY_POINT_RENAME(upropsvec_addPropertyStarts)
Fredrik Roubert57b72de2018-06-21 14:29:02 +02001308#define uprv_add32_overflow U_ICU_ENTRY_POINT_RENAME(uprv_add32_overflow)
claireho27f65472011-06-09 11:11:49 -07001309#define uprv_aestrncpy U_ICU_ENTRY_POINT_RENAME(uprv_aestrncpy)
claireho50294ea2010-05-03 15:44:48 -07001310#define uprv_asciiFromEbcdic U_ICU_ENTRY_POINT_RENAME(uprv_asciiFromEbcdic)
1311#define uprv_asciitolower U_ICU_ENTRY_POINT_RENAME(uprv_asciitolower)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001312#define uprv_calloc U_ICU_ENTRY_POINT_RENAME(uprv_calloc)
claireho50294ea2010-05-03 15:44:48 -07001313#define uprv_ceil U_ICU_ENTRY_POINT_RENAME(uprv_ceil)
claireho50294ea2010-05-03 15:44:48 -07001314#define uprv_compareASCIIPropertyNames U_ICU_ENTRY_POINT_RENAME(uprv_compareASCIIPropertyNames)
1315#define uprv_compareEBCDICPropertyNames U_ICU_ENTRY_POINT_RENAME(uprv_compareEBCDICPropertyNames)
1316#define uprv_compareInvAscii U_ICU_ENTRY_POINT_RENAME(uprv_compareInvAscii)
1317#define uprv_compareInvEbcdic U_ICU_ENTRY_POINT_RENAME(uprv_compareInvEbcdic)
1318#define uprv_compareInvEbcdicAsAscii U_ICU_ENTRY_POINT_RENAME(uprv_compareInvEbcdicAsAscii)
1319#define uprv_convertToLCID U_ICU_ENTRY_POINT_RENAME(uprv_convertToLCID)
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001320#define uprv_convertToLCIDPlatform U_ICU_ENTRY_POINT_RENAME(uprv_convertToLCIDPlatform)
claireho50294ea2010-05-03 15:44:48 -07001321#define uprv_convertToPosix U_ICU_ENTRY_POINT_RENAME(uprv_convertToPosix)
1322#define uprv_copyAscii U_ICU_ENTRY_POINT_RENAME(uprv_copyAscii)
1323#define uprv_copyEbcdic U_ICU_ENTRY_POINT_RENAME(uprv_copyEbcdic)
1324#define uprv_decContextClearStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextClearStatus)
1325#define uprv_decContextDefault U_ICU_ENTRY_POINT_RENAME(uprv_decContextDefault)
1326#define uprv_decContextGetRounding U_ICU_ENTRY_POINT_RENAME(uprv_decContextGetRounding)
1327#define uprv_decContextGetStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextGetStatus)
1328#define uprv_decContextRestoreStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextRestoreStatus)
1329#define uprv_decContextSaveStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextSaveStatus)
1330#define uprv_decContextSetRounding U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetRounding)
1331#define uprv_decContextSetStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatus)
1332#define uprv_decContextSetStatusFromString U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatusFromString)
1333#define uprv_decContextSetStatusFromStringQuiet U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatusFromStringQuiet)
1334#define uprv_decContextSetStatusQuiet U_ICU_ENTRY_POINT_RENAME(uprv_decContextSetStatusQuiet)
1335#define uprv_decContextStatusToString U_ICU_ENTRY_POINT_RENAME(uprv_decContextStatusToString)
claireho50294ea2010-05-03 15:44:48 -07001336#define uprv_decContextTestSavedStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextTestSavedStatus)
1337#define uprv_decContextTestStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextTestStatus)
1338#define uprv_decContextZeroStatus U_ICU_ENTRY_POINT_RENAME(uprv_decContextZeroStatus)
1339#define uprv_decNumberAbs U_ICU_ENTRY_POINT_RENAME(uprv_decNumberAbs)
1340#define uprv_decNumberAdd U_ICU_ENTRY_POINT_RENAME(uprv_decNumberAdd)
1341#define uprv_decNumberAnd U_ICU_ENTRY_POINT_RENAME(uprv_decNumberAnd)
claireho50294ea2010-05-03 15:44:48 -07001342#define uprv_decNumberClassToString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberClassToString)
1343#define uprv_decNumberCompare U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompare)
1344#define uprv_decNumberCompareSignal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompareSignal)
1345#define uprv_decNumberCompareTotal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompareTotal)
1346#define uprv_decNumberCompareTotalMag U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCompareTotalMag)
1347#define uprv_decNumberCopy U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopy)
1348#define uprv_decNumberCopyAbs U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopyAbs)
1349#define uprv_decNumberCopyNegate U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopyNegate)
1350#define uprv_decNumberCopySign U_ICU_ENTRY_POINT_RENAME(uprv_decNumberCopySign)
1351#define uprv_decNumberDivide U_ICU_ENTRY_POINT_RENAME(uprv_decNumberDivide)
1352#define uprv_decNumberDivideInteger U_ICU_ENTRY_POINT_RENAME(uprv_decNumberDivideInteger)
1353#define uprv_decNumberExp U_ICU_ENTRY_POINT_RENAME(uprv_decNumberExp)
1354#define uprv_decNumberFMA U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFMA)
1355#define uprv_decNumberFromInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFromInt32)
1356#define uprv_decNumberFromString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFromString)
1357#define uprv_decNumberFromUInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberFromUInt32)
1358#define uprv_decNumberGetBCD U_ICU_ENTRY_POINT_RENAME(uprv_decNumberGetBCD)
1359#define uprv_decNumberInvert U_ICU_ENTRY_POINT_RENAME(uprv_decNumberInvert)
1360#define uprv_decNumberIsNormal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberIsNormal)
1361#define uprv_decNumberIsSubnormal U_ICU_ENTRY_POINT_RENAME(uprv_decNumberIsSubnormal)
1362#define uprv_decNumberLn U_ICU_ENTRY_POINT_RENAME(uprv_decNumberLn)
1363#define uprv_decNumberLog10 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberLog10)
1364#define uprv_decNumberLogB U_ICU_ENTRY_POINT_RENAME(uprv_decNumberLogB)
1365#define uprv_decNumberMax U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMax)
1366#define uprv_decNumberMaxMag U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMaxMag)
1367#define uprv_decNumberMin U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMin)
1368#define uprv_decNumberMinMag U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMinMag)
1369#define uprv_decNumberMinus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMinus)
1370#define uprv_decNumberMultiply U_ICU_ENTRY_POINT_RENAME(uprv_decNumberMultiply)
1371#define uprv_decNumberNextMinus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNextMinus)
1372#define uprv_decNumberNextPlus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNextPlus)
1373#define uprv_decNumberNextToward U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNextToward)
1374#define uprv_decNumberNormalize U_ICU_ENTRY_POINT_RENAME(uprv_decNumberNormalize)
1375#define uprv_decNumberOr U_ICU_ENTRY_POINT_RENAME(uprv_decNumberOr)
1376#define uprv_decNumberPlus U_ICU_ENTRY_POINT_RENAME(uprv_decNumberPlus)
1377#define uprv_decNumberPower U_ICU_ENTRY_POINT_RENAME(uprv_decNumberPower)
1378#define uprv_decNumberQuantize U_ICU_ENTRY_POINT_RENAME(uprv_decNumberQuantize)
1379#define uprv_decNumberReduce U_ICU_ENTRY_POINT_RENAME(uprv_decNumberReduce)
1380#define uprv_decNumberRemainder U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRemainder)
1381#define uprv_decNumberRemainderNear U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRemainderNear)
1382#define uprv_decNumberRescale U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRescale)
1383#define uprv_decNumberRotate U_ICU_ENTRY_POINT_RENAME(uprv_decNumberRotate)
1384#define uprv_decNumberSameQuantum U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSameQuantum)
1385#define uprv_decNumberScaleB U_ICU_ENTRY_POINT_RENAME(uprv_decNumberScaleB)
1386#define uprv_decNumberSetBCD U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSetBCD)
1387#define uprv_decNumberShift U_ICU_ENTRY_POINT_RENAME(uprv_decNumberShift)
1388#define uprv_decNumberSquareRoot U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSquareRoot)
1389#define uprv_decNumberSubtract U_ICU_ENTRY_POINT_RENAME(uprv_decNumberSubtract)
1390#define uprv_decNumberToEngString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToEngString)
1391#define uprv_decNumberToInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToInt32)
1392#define uprv_decNumberToIntegralExact U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToIntegralExact)
1393#define uprv_decNumberToIntegralValue U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToIntegralValue)
1394#define uprv_decNumberToString U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToString)
1395#define uprv_decNumberToUInt32 U_ICU_ENTRY_POINT_RENAME(uprv_decNumberToUInt32)
1396#define uprv_decNumberTrim U_ICU_ENTRY_POINT_RENAME(uprv_decNumberTrim)
1397#define uprv_decNumberVersion U_ICU_ENTRY_POINT_RENAME(uprv_decNumberVersion)
1398#define uprv_decNumberXor U_ICU_ENTRY_POINT_RENAME(uprv_decNumberXor)
1399#define uprv_decNumberZero U_ICU_ENTRY_POINT_RENAME(uprv_decNumberZero)
ccorneliusfceb3982014-04-16 12:27:14 -07001400#define uprv_deleteConditionalCE32 U_ICU_ENTRY_POINT_RENAME(uprv_deleteConditionalCE32)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001401#define uprv_deleteUObject U_ICU_ENTRY_POINT_RENAME(uprv_deleteUObject)
claireho50294ea2010-05-03 15:44:48 -07001402#define uprv_dl_close U_ICU_ENTRY_POINT_RENAME(uprv_dl_close)
1403#define uprv_dl_open U_ICU_ENTRY_POINT_RENAME(uprv_dl_open)
clairehob26ce3a2012-01-10 17:54:41 -08001404#define uprv_dlsym_func U_ICU_ENTRY_POINT_RENAME(uprv_dlsym_func)
claireho27f65472011-06-09 11:11:49 -07001405#define uprv_eastrncpy U_ICU_ENTRY_POINT_RENAME(uprv_eastrncpy)
claireho50294ea2010-05-03 15:44:48 -07001406#define uprv_ebcdicFromAscii U_ICU_ENTRY_POINT_RENAME(uprv_ebcdicFromAscii)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +00001407#define uprv_ebcdicToAscii U_ICU_ENTRY_POINT_RENAME(uprv_ebcdicToAscii)
clairehob26ce3a2012-01-10 17:54:41 -08001408#define uprv_ebcdicToLowercaseAscii U_ICU_ENTRY_POINT_RENAME(uprv_ebcdicToLowercaseAscii)
claireho50294ea2010-05-03 15:44:48 -07001409#define uprv_ebcdictolower U_ICU_ENTRY_POINT_RENAME(uprv_ebcdictolower)
1410#define uprv_fabs U_ICU_ENTRY_POINT_RENAME(uprv_fabs)
1411#define uprv_floor U_ICU_ENTRY_POINT_RENAME(uprv_floor)
1412#define uprv_fmax U_ICU_ENTRY_POINT_RENAME(uprv_fmax)
1413#define uprv_fmin U_ICU_ENTRY_POINT_RENAME(uprv_fmin)
1414#define uprv_fmod U_ICU_ENTRY_POINT_RENAME(uprv_fmod)
1415#define uprv_free U_ICU_ENTRY_POINT_RENAME(uprv_free)
1416#define uprv_getCharNameCharacters U_ICU_ENTRY_POINT_RENAME(uprv_getCharNameCharacters)
claireho50294ea2010-05-03 15:44:48 -07001417#define uprv_getDefaultLocaleID U_ICU_ENTRY_POINT_RENAME(uprv_getDefaultLocaleID)
1418#define uprv_getInfinity U_ICU_ENTRY_POINT_RENAME(uprv_getInfinity)
1419#define uprv_getMaxCharNameLength U_ICU_ENTRY_POINT_RENAME(uprv_getMaxCharNameLength)
1420#define uprv_getMaxValues U_ICU_ENTRY_POINT_RENAME(uprv_getMaxValues)
1421#define uprv_getNaN U_ICU_ENTRY_POINT_RENAME(uprv_getNaN)
claireho27f65472011-06-09 11:11:49 -07001422#define uprv_getRawUTCtime U_ICU_ENTRY_POINT_RENAME(uprv_getRawUTCtime)
claireho50294ea2010-05-03 15:44:48 -07001423#define uprv_getStaticCurrencyName U_ICU_ENTRY_POINT_RENAME(uprv_getStaticCurrencyName)
1424#define uprv_getUTCtime U_ICU_ENTRY_POINT_RENAME(uprv_getUTCtime)
claireho50294ea2010-05-03 15:44:48 -07001425#define uprv_int32Comparator U_ICU_ENTRY_POINT_RENAME(uprv_int32Comparator)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001426#define uprv_isASCIILetter U_ICU_ENTRY_POINT_RENAME(uprv_isASCIILetter)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +00001427#define uprv_isEbcdicAtSign U_ICU_ENTRY_POINT_RENAME(uprv_isEbcdicAtSign)
claireho50294ea2010-05-03 15:44:48 -07001428#define uprv_isInfinite U_ICU_ENTRY_POINT_RENAME(uprv_isInfinite)
1429#define uprv_isInvariantString U_ICU_ENTRY_POINT_RENAME(uprv_isInvariantString)
1430#define uprv_isInvariantUString U_ICU_ENTRY_POINT_RENAME(uprv_isInvariantUString)
1431#define uprv_isNaN U_ICU_ENTRY_POINT_RENAME(uprv_isNaN)
1432#define uprv_isNegativeInfinity U_ICU_ENTRY_POINT_RENAME(uprv_isNegativeInfinity)
1433#define uprv_isPositiveInfinity U_ICU_ENTRY_POINT_RENAME(uprv_isPositiveInfinity)
claireho50294ea2010-05-03 15:44:48 -07001434#define uprv_itou U_ICU_ENTRY_POINT_RENAME(uprv_itou)
1435#define uprv_log U_ICU_ENTRY_POINT_RENAME(uprv_log)
1436#define uprv_malloc U_ICU_ENTRY_POINT_RENAME(uprv_malloc)
1437#define uprv_mapFile U_ICU_ENTRY_POINT_RENAME(uprv_mapFile)
1438#define uprv_max U_ICU_ENTRY_POINT_RENAME(uprv_max)
1439#define uprv_maxMantissa U_ICU_ENTRY_POINT_RENAME(uprv_maxMantissa)
1440#define uprv_maximumPtr U_ICU_ENTRY_POINT_RENAME(uprv_maximumPtr)
1441#define uprv_min U_ICU_ENTRY_POINT_RENAME(uprv_min)
1442#define uprv_modf U_ICU_ENTRY_POINT_RENAME(uprv_modf)
Fredrik Roubert57b72de2018-06-21 14:29:02 +02001443#define uprv_mul32_overflow U_ICU_ENTRY_POINT_RENAME(uprv_mul32_overflow)
claireho50294ea2010-05-03 15:44:48 -07001444#define uprv_parseCurrency U_ICU_ENTRY_POINT_RENAME(uprv_parseCurrency)
1445#define uprv_pathIsAbsolute U_ICU_ENTRY_POINT_RENAME(uprv_pathIsAbsolute)
1446#define uprv_pow U_ICU_ENTRY_POINT_RENAME(uprv_pow)
1447#define uprv_pow10 U_ICU_ENTRY_POINT_RENAME(uprv_pow10)
1448#define uprv_realloc U_ICU_ENTRY_POINT_RENAME(uprv_realloc)
1449#define uprv_round U_ICU_ENTRY_POINT_RENAME(uprv_round)
1450#define uprv_sortArray U_ICU_ENTRY_POINT_RENAME(uprv_sortArray)
ccornelius59d709d2014-02-20 10:29:46 -08001451#define uprv_stableBinarySearch U_ICU_ENTRY_POINT_RENAME(uprv_stableBinarySearch)
claireho50294ea2010-05-03 15:44:48 -07001452#define uprv_strCompare U_ICU_ENTRY_POINT_RENAME(uprv_strCompare)
1453#define uprv_strdup U_ICU_ENTRY_POINT_RENAME(uprv_strdup)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001454#define uprv_stricmp U_ICU_ENTRY_POINT_RENAME(uprv_stricmp)
claireho50294ea2010-05-03 15:44:48 -07001455#define uprv_strndup U_ICU_ENTRY_POINT_RENAME(uprv_strndup)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001456#define uprv_strnicmp U_ICU_ENTRY_POINT_RENAME(uprv_strnicmp)
claireho50294ea2010-05-03 15:44:48 -07001457#define uprv_syntaxError U_ICU_ENTRY_POINT_RENAME(uprv_syntaxError)
1458#define uprv_timezone U_ICU_ENTRY_POINT_RENAME(uprv_timezone)
1459#define uprv_toupper U_ICU_ENTRY_POINT_RENAME(uprv_toupper)
1460#define uprv_trunc U_ICU_ENTRY_POINT_RENAME(uprv_trunc)
1461#define uprv_tzname U_ICU_ENTRY_POINT_RENAME(uprv_tzname)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001462#define uprv_tzname_clear_cache U_ICU_ENTRY_POINT_RENAME(uprv_tzname_clear_cache)
claireho50294ea2010-05-03 15:44:48 -07001463#define uprv_tzset U_ICU_ENTRY_POINT_RENAME(uprv_tzset)
claireho50294ea2010-05-03 15:44:48 -07001464#define uprv_uint16Comparator U_ICU_ENTRY_POINT_RENAME(uprv_uint16Comparator)
1465#define uprv_uint32Comparator U_ICU_ENTRY_POINT_RENAME(uprv_uint32Comparator)
1466#define uprv_unmapFile U_ICU_ENTRY_POINT_RENAME(uprv_unmapFile)
1467#define upvec_cloneArray U_ICU_ENTRY_POINT_RENAME(upvec_cloneArray)
1468#define upvec_close U_ICU_ENTRY_POINT_RENAME(upvec_close)
1469#define upvec_compact U_ICU_ENTRY_POINT_RENAME(upvec_compact)
1470#define upvec_compactToUTrie2Handler U_ICU_ENTRY_POINT_RENAME(upvec_compactToUTrie2Handler)
1471#define upvec_compactToUTrie2WithRowIndexes U_ICU_ENTRY_POINT_RENAME(upvec_compactToUTrie2WithRowIndexes)
claireho50294ea2010-05-03 15:44:48 -07001472#define upvec_getArray U_ICU_ENTRY_POINT_RENAME(upvec_getArray)
1473#define upvec_getRow U_ICU_ENTRY_POINT_RENAME(upvec_getRow)
1474#define upvec_getValue U_ICU_ENTRY_POINT_RENAME(upvec_getValue)
1475#define upvec_open U_ICU_ENTRY_POINT_RENAME(upvec_open)
1476#define upvec_setValue U_ICU_ENTRY_POINT_RENAME(upvec_setValue)
1477#define uregex_appendReplacement U_ICU_ENTRY_POINT_RENAME(uregex_appendReplacement)
1478#define uregex_appendReplacementUText U_ICU_ENTRY_POINT_RENAME(uregex_appendReplacementUText)
1479#define uregex_appendTail U_ICU_ENTRY_POINT_RENAME(uregex_appendTail)
1480#define uregex_appendTailUText U_ICU_ENTRY_POINT_RENAME(uregex_appendTailUText)
1481#define uregex_clone U_ICU_ENTRY_POINT_RENAME(uregex_clone)
1482#define uregex_close U_ICU_ENTRY_POINT_RENAME(uregex_close)
1483#define uregex_end U_ICU_ENTRY_POINT_RENAME(uregex_end)
claireho27f65472011-06-09 11:11:49 -07001484#define uregex_end64 U_ICU_ENTRY_POINT_RENAME(uregex_end64)
claireho50294ea2010-05-03 15:44:48 -07001485#define uregex_find U_ICU_ENTRY_POINT_RENAME(uregex_find)
claireho27f65472011-06-09 11:11:49 -07001486#define uregex_find64 U_ICU_ENTRY_POINT_RENAME(uregex_find64)
claireho50294ea2010-05-03 15:44:48 -07001487#define uregex_findNext U_ICU_ENTRY_POINT_RENAME(uregex_findNext)
1488#define uregex_flags U_ICU_ENTRY_POINT_RENAME(uregex_flags)
claireho27f65472011-06-09 11:11:49 -07001489#define uregex_getFindProgressCallback U_ICU_ENTRY_POINT_RENAME(uregex_getFindProgressCallback)
claireho50294ea2010-05-03 15:44:48 -07001490#define uregex_getMatchCallback U_ICU_ENTRY_POINT_RENAME(uregex_getMatchCallback)
1491#define uregex_getStackLimit U_ICU_ENTRY_POINT_RENAME(uregex_getStackLimit)
1492#define uregex_getText U_ICU_ENTRY_POINT_RENAME(uregex_getText)
1493#define uregex_getTimeLimit U_ICU_ENTRY_POINT_RENAME(uregex_getTimeLimit)
1494#define uregex_getUText U_ICU_ENTRY_POINT_RENAME(uregex_getUText)
1495#define uregex_group U_ICU_ENTRY_POINT_RENAME(uregex_group)
1496#define uregex_groupCount U_ICU_ENTRY_POINT_RENAME(uregex_groupCount)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +01001497#define uregex_groupNumberFromCName U_ICU_ENTRY_POINT_RENAME(uregex_groupNumberFromCName)
1498#define uregex_groupNumberFromName U_ICU_ENTRY_POINT_RENAME(uregex_groupNumberFromName)
claireho50294ea2010-05-03 15:44:48 -07001499#define uregex_groupUText U_ICU_ENTRY_POINT_RENAME(uregex_groupUText)
1500#define uregex_hasAnchoringBounds U_ICU_ENTRY_POINT_RENAME(uregex_hasAnchoringBounds)
1501#define uregex_hasTransparentBounds U_ICU_ENTRY_POINT_RENAME(uregex_hasTransparentBounds)
1502#define uregex_hitEnd U_ICU_ENTRY_POINT_RENAME(uregex_hitEnd)
1503#define uregex_lookingAt U_ICU_ENTRY_POINT_RENAME(uregex_lookingAt)
claireho27f65472011-06-09 11:11:49 -07001504#define uregex_lookingAt64 U_ICU_ENTRY_POINT_RENAME(uregex_lookingAt64)
claireho50294ea2010-05-03 15:44:48 -07001505#define uregex_matches U_ICU_ENTRY_POINT_RENAME(uregex_matches)
claireho27f65472011-06-09 11:11:49 -07001506#define uregex_matches64 U_ICU_ENTRY_POINT_RENAME(uregex_matches64)
claireho50294ea2010-05-03 15:44:48 -07001507#define uregex_open U_ICU_ENTRY_POINT_RENAME(uregex_open)
1508#define uregex_openC U_ICU_ENTRY_POINT_RENAME(uregex_openC)
1509#define uregex_openUText U_ICU_ENTRY_POINT_RENAME(uregex_openUText)
1510#define uregex_pattern U_ICU_ENTRY_POINT_RENAME(uregex_pattern)
1511#define uregex_patternUText U_ICU_ENTRY_POINT_RENAME(uregex_patternUText)
clairehob26ce3a2012-01-10 17:54:41 -08001512#define uregex_refreshUText U_ICU_ENTRY_POINT_RENAME(uregex_refreshUText)
claireho50294ea2010-05-03 15:44:48 -07001513#define uregex_regionEnd U_ICU_ENTRY_POINT_RENAME(uregex_regionEnd)
claireho27f65472011-06-09 11:11:49 -07001514#define uregex_regionEnd64 U_ICU_ENTRY_POINT_RENAME(uregex_regionEnd64)
claireho50294ea2010-05-03 15:44:48 -07001515#define uregex_regionStart U_ICU_ENTRY_POINT_RENAME(uregex_regionStart)
claireho27f65472011-06-09 11:11:49 -07001516#define uregex_regionStart64 U_ICU_ENTRY_POINT_RENAME(uregex_regionStart64)
claireho50294ea2010-05-03 15:44:48 -07001517#define uregex_replaceAll U_ICU_ENTRY_POINT_RENAME(uregex_replaceAll)
1518#define uregex_replaceAllUText U_ICU_ENTRY_POINT_RENAME(uregex_replaceAllUText)
1519#define uregex_replaceFirst U_ICU_ENTRY_POINT_RENAME(uregex_replaceFirst)
1520#define uregex_replaceFirstUText U_ICU_ENTRY_POINT_RENAME(uregex_replaceFirstUText)
1521#define uregex_requireEnd U_ICU_ENTRY_POINT_RENAME(uregex_requireEnd)
1522#define uregex_reset U_ICU_ENTRY_POINT_RENAME(uregex_reset)
claireho27f65472011-06-09 11:11:49 -07001523#define uregex_reset64 U_ICU_ENTRY_POINT_RENAME(uregex_reset64)
1524#define uregex_setFindProgressCallback U_ICU_ENTRY_POINT_RENAME(uregex_setFindProgressCallback)
claireho50294ea2010-05-03 15:44:48 -07001525#define uregex_setMatchCallback U_ICU_ENTRY_POINT_RENAME(uregex_setMatchCallback)
1526#define uregex_setRegion U_ICU_ENTRY_POINT_RENAME(uregex_setRegion)
claireho27f65472011-06-09 11:11:49 -07001527#define uregex_setRegion64 U_ICU_ENTRY_POINT_RENAME(uregex_setRegion64)
1528#define uregex_setRegionAndStart U_ICU_ENTRY_POINT_RENAME(uregex_setRegionAndStart)
claireho50294ea2010-05-03 15:44:48 -07001529#define uregex_setStackLimit U_ICU_ENTRY_POINT_RENAME(uregex_setStackLimit)
1530#define uregex_setText U_ICU_ENTRY_POINT_RENAME(uregex_setText)
1531#define uregex_setTimeLimit U_ICU_ENTRY_POINT_RENAME(uregex_setTimeLimit)
1532#define uregex_setUText U_ICU_ENTRY_POINT_RENAME(uregex_setUText)
1533#define uregex_split U_ICU_ENTRY_POINT_RENAME(uregex_split)
1534#define uregex_splitUText U_ICU_ENTRY_POINT_RENAME(uregex_splitUText)
1535#define uregex_start U_ICU_ENTRY_POINT_RENAME(uregex_start)
claireho27f65472011-06-09 11:11:49 -07001536#define uregex_start64 U_ICU_ENTRY_POINT_RENAME(uregex_start64)
claireho50294ea2010-05-03 15:44:48 -07001537#define uregex_ucstr_unescape_charAt U_ICU_ENTRY_POINT_RENAME(uregex_ucstr_unescape_charAt)
1538#define uregex_useAnchoringBounds U_ICU_ENTRY_POINT_RENAME(uregex_useAnchoringBounds)
1539#define uregex_useTransparentBounds U_ICU_ENTRY_POINT_RENAME(uregex_useTransparentBounds)
1540#define uregex_utext_unescape_charAt U_ICU_ENTRY_POINT_RENAME(uregex_utext_unescape_charAt)
ccornelius59d709d2014-02-20 10:29:46 -08001541#define uregion_areEqual U_ICU_ENTRY_POINT_RENAME(uregion_areEqual)
1542#define uregion_contains U_ICU_ENTRY_POINT_RENAME(uregion_contains)
1543#define uregion_getAvailable U_ICU_ENTRY_POINT_RENAME(uregion_getAvailable)
1544#define uregion_getContainedRegions U_ICU_ENTRY_POINT_RENAME(uregion_getContainedRegions)
1545#define uregion_getContainedRegionsOfType U_ICU_ENTRY_POINT_RENAME(uregion_getContainedRegionsOfType)
1546#define uregion_getContainingRegion U_ICU_ENTRY_POINT_RENAME(uregion_getContainingRegion)
1547#define uregion_getContainingRegionOfType U_ICU_ENTRY_POINT_RENAME(uregion_getContainingRegionOfType)
1548#define uregion_getNumericCode U_ICU_ENTRY_POINT_RENAME(uregion_getNumericCode)
1549#define uregion_getPreferredValues U_ICU_ENTRY_POINT_RENAME(uregion_getPreferredValues)
1550#define uregion_getRegionCode U_ICU_ENTRY_POINT_RENAME(uregion_getRegionCode)
1551#define uregion_getRegionFromCode U_ICU_ENTRY_POINT_RENAME(uregion_getRegionFromCode)
1552#define uregion_getRegionFromNumericCode U_ICU_ENTRY_POINT_RENAME(uregion_getRegionFromNumericCode)
1553#define uregion_getType U_ICU_ENTRY_POINT_RENAME(uregion_getType)
Fredrik Roubert8de051c2016-03-10 13:13:27 +01001554#define ureldatefmt_close U_ICU_ENTRY_POINT_RENAME(ureldatefmt_close)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001555#define ureldatefmt_closeResult U_ICU_ENTRY_POINT_RENAME(ureldatefmt_closeResult)
Fredrik Roubert8de051c2016-03-10 13:13:27 +01001556#define ureldatefmt_combineDateAndTime U_ICU_ENTRY_POINT_RENAME(ureldatefmt_combineDateAndTime)
1557#define ureldatefmt_format U_ICU_ENTRY_POINT_RENAME(ureldatefmt_format)
1558#define ureldatefmt_formatNumeric U_ICU_ENTRY_POINT_RENAME(ureldatefmt_formatNumeric)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001559#define ureldatefmt_formatNumericToResult U_ICU_ENTRY_POINT_RENAME(ureldatefmt_formatNumericToResult)
1560#define ureldatefmt_formatToResult U_ICU_ENTRY_POINT_RENAME(ureldatefmt_formatToResult)
Fredrik Roubert8de051c2016-03-10 13:13:27 +01001561#define ureldatefmt_open U_ICU_ENTRY_POINT_RENAME(ureldatefmt_open)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001562#define ureldatefmt_openResult U_ICU_ENTRY_POINT_RENAME(ureldatefmt_openResult)
1563#define ureldatefmt_resultAsValue U_ICU_ENTRY_POINT_RENAME(ureldatefmt_resultAsValue)
claireho50294ea2010-05-03 15:44:48 -07001564#define ures_close U_ICU_ENTRY_POINT_RENAME(ures_close)
1565#define ures_copyResb U_ICU_ENTRY_POINT_RENAME(ures_copyResb)
1566#define ures_countArrayItems U_ICU_ENTRY_POINT_RENAME(ures_countArrayItems)
1567#define ures_findResource U_ICU_ENTRY_POINT_RENAME(ures_findResource)
1568#define ures_findSubResource U_ICU_ENTRY_POINT_RENAME(ures_findSubResource)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001569#define ures_getAllItemsWithFallback U_ICU_ENTRY_POINT_RENAME(ures_getAllItemsWithFallback)
claireho50294ea2010-05-03 15:44:48 -07001570#define ures_getBinary U_ICU_ENTRY_POINT_RENAME(ures_getBinary)
1571#define ures_getByIndex U_ICU_ENTRY_POINT_RENAME(ures_getByIndex)
1572#define ures_getByKey U_ICU_ENTRY_POINT_RENAME(ures_getByKey)
1573#define ures_getByKeyWithFallback U_ICU_ENTRY_POINT_RENAME(ures_getByKeyWithFallback)
1574#define ures_getFunctionalEquivalent U_ICU_ENTRY_POINT_RENAME(ures_getFunctionalEquivalent)
1575#define ures_getInt U_ICU_ENTRY_POINT_RENAME(ures_getInt)
1576#define ures_getIntVector U_ICU_ENTRY_POINT_RENAME(ures_getIntVector)
1577#define ures_getKey U_ICU_ENTRY_POINT_RENAME(ures_getKey)
1578#define ures_getKeywordValues U_ICU_ENTRY_POINT_RENAME(ures_getKeywordValues)
1579#define ures_getLocale U_ICU_ENTRY_POINT_RENAME(ures_getLocale)
1580#define ures_getLocaleByType U_ICU_ENTRY_POINT_RENAME(ures_getLocaleByType)
claireho27f65472011-06-09 11:11:49 -07001581#define ures_getLocaleInternal U_ICU_ENTRY_POINT_RENAME(ures_getLocaleInternal)
claireho50294ea2010-05-03 15:44:48 -07001582#define ures_getName U_ICU_ENTRY_POINT_RENAME(ures_getName)
1583#define ures_getNextResource U_ICU_ENTRY_POINT_RENAME(ures_getNextResource)
1584#define ures_getNextString U_ICU_ENTRY_POINT_RENAME(ures_getNextString)
1585#define ures_getSize U_ICU_ENTRY_POINT_RENAME(ures_getSize)
1586#define ures_getString U_ICU_ENTRY_POINT_RENAME(ures_getString)
1587#define ures_getStringByIndex U_ICU_ENTRY_POINT_RENAME(ures_getStringByIndex)
1588#define ures_getStringByKey U_ICU_ENTRY_POINT_RENAME(ures_getStringByKey)
1589#define ures_getStringByKeyWithFallback U_ICU_ENTRY_POINT_RENAME(ures_getStringByKeyWithFallback)
1590#define ures_getType U_ICU_ENTRY_POINT_RENAME(ures_getType)
1591#define ures_getUInt U_ICU_ENTRY_POINT_RENAME(ures_getUInt)
1592#define ures_getUTF8String U_ICU_ENTRY_POINT_RENAME(ures_getUTF8String)
1593#define ures_getUTF8StringByIndex U_ICU_ENTRY_POINT_RENAME(ures_getUTF8StringByIndex)
1594#define ures_getUTF8StringByKey U_ICU_ENTRY_POINT_RENAME(ures_getUTF8StringByKey)
Nikita Iashchenko4c0e2862019-11-05 16:38:00 +00001595#define ures_getValueWithFallback U_ICU_ENTRY_POINT_RENAME(ures_getValueWithFallback)
claireho50294ea2010-05-03 15:44:48 -07001596#define ures_getVersion U_ICU_ENTRY_POINT_RENAME(ures_getVersion)
1597#define ures_getVersionByKey U_ICU_ENTRY_POINT_RENAME(ures_getVersionByKey)
1598#define ures_getVersionNumber U_ICU_ENTRY_POINT_RENAME(ures_getVersionNumber)
claireho27f65472011-06-09 11:11:49 -07001599#define ures_getVersionNumberInternal U_ICU_ENTRY_POINT_RENAME(ures_getVersionNumberInternal)
claireho50294ea2010-05-03 15:44:48 -07001600#define ures_hasNext U_ICU_ENTRY_POINT_RENAME(ures_hasNext)
1601#define ures_initStackObject U_ICU_ENTRY_POINT_RENAME(ures_initStackObject)
1602#define ures_open U_ICU_ENTRY_POINT_RENAME(ures_open)
1603#define ures_openAvailableLocales U_ICU_ENTRY_POINT_RENAME(ures_openAvailableLocales)
1604#define ures_openDirect U_ICU_ENTRY_POINT_RENAME(ures_openDirect)
Nikita Iashchenkoda0990f2019-06-13 19:36:45 +01001605#define ures_openDirectFillIn U_ICU_ENTRY_POINT_RENAME(ures_openDirectFillIn)
claireho50294ea2010-05-03 15:44:48 -07001606#define ures_openFillIn U_ICU_ENTRY_POINT_RENAME(ures_openFillIn)
Fredrik Roubert1b7d32f2015-03-19 11:15:44 +01001607#define ures_openNoDefault U_ICU_ENTRY_POINT_RENAME(ures_openNoDefault)
claireho50294ea2010-05-03 15:44:48 -07001608#define ures_openU U_ICU_ENTRY_POINT_RENAME(ures_openU)
1609#define ures_resetIterator U_ICU_ENTRY_POINT_RENAME(ures_resetIterator)
1610#define ures_swap U_ICU_ENTRY_POINT_RENAME(ures_swap)
Craig Cornelius83933352013-06-14 14:20:29 -07001611#define uscript_breaksBetweenLetters U_ICU_ENTRY_POINT_RENAME(uscript_breaksBetweenLetters)
claireho50294ea2010-05-03 15:44:48 -07001612#define uscript_closeRun U_ICU_ENTRY_POINT_RENAME(uscript_closeRun)
1613#define uscript_getCode U_ICU_ENTRY_POINT_RENAME(uscript_getCode)
1614#define uscript_getName U_ICU_ENTRY_POINT_RENAME(uscript_getName)
Craig Cornelius83933352013-06-14 14:20:29 -07001615#define uscript_getSampleString U_ICU_ENTRY_POINT_RENAME(uscript_getSampleString)
1616#define uscript_getSampleUnicodeString U_ICU_ENTRY_POINT_RENAME(uscript_getSampleUnicodeString)
claireho50294ea2010-05-03 15:44:48 -07001617#define uscript_getScript U_ICU_ENTRY_POINT_RENAME(uscript_getScript)
claireho27f65472011-06-09 11:11:49 -07001618#define uscript_getScriptExtensions U_ICU_ENTRY_POINT_RENAME(uscript_getScriptExtensions)
claireho50294ea2010-05-03 15:44:48 -07001619#define uscript_getShortName U_ICU_ENTRY_POINT_RENAME(uscript_getShortName)
Craig Cornelius83933352013-06-14 14:20:29 -07001620#define uscript_getUsage U_ICU_ENTRY_POINT_RENAME(uscript_getUsage)
claireho27f65472011-06-09 11:11:49 -07001621#define uscript_hasScript U_ICU_ENTRY_POINT_RENAME(uscript_hasScript)
Craig Cornelius83933352013-06-14 14:20:29 -07001622#define uscript_isCased U_ICU_ENTRY_POINT_RENAME(uscript_isCased)
1623#define uscript_isRightToLeft U_ICU_ENTRY_POINT_RENAME(uscript_isRightToLeft)
claireho50294ea2010-05-03 15:44:48 -07001624#define uscript_nextRun U_ICU_ENTRY_POINT_RENAME(uscript_nextRun)
1625#define uscript_openRun U_ICU_ENTRY_POINT_RENAME(uscript_openRun)
1626#define uscript_resetRun U_ICU_ENTRY_POINT_RENAME(uscript_resetRun)
1627#define uscript_setRunText U_ICU_ENTRY_POINT_RENAME(uscript_setRunText)
1628#define usearch_close U_ICU_ENTRY_POINT_RENAME(usearch_close)
1629#define usearch_first U_ICU_ENTRY_POINT_RENAME(usearch_first)
1630#define usearch_following U_ICU_ENTRY_POINT_RENAME(usearch_following)
1631#define usearch_getAttribute U_ICU_ENTRY_POINT_RENAME(usearch_getAttribute)
1632#define usearch_getBreakIterator U_ICU_ENTRY_POINT_RENAME(usearch_getBreakIterator)
1633#define usearch_getCollator U_ICU_ENTRY_POINT_RENAME(usearch_getCollator)
1634#define usearch_getMatchedLength U_ICU_ENTRY_POINT_RENAME(usearch_getMatchedLength)
1635#define usearch_getMatchedStart U_ICU_ENTRY_POINT_RENAME(usearch_getMatchedStart)
1636#define usearch_getMatchedText U_ICU_ENTRY_POINT_RENAME(usearch_getMatchedText)
1637#define usearch_getOffset U_ICU_ENTRY_POINT_RENAME(usearch_getOffset)
1638#define usearch_getPattern U_ICU_ENTRY_POINT_RENAME(usearch_getPattern)
1639#define usearch_getText U_ICU_ENTRY_POINT_RENAME(usearch_getText)
1640#define usearch_handleNextCanonical U_ICU_ENTRY_POINT_RENAME(usearch_handleNextCanonical)
1641#define usearch_handleNextExact U_ICU_ENTRY_POINT_RENAME(usearch_handleNextExact)
1642#define usearch_handlePreviousCanonical U_ICU_ENTRY_POINT_RENAME(usearch_handlePreviousCanonical)
1643#define usearch_handlePreviousExact U_ICU_ENTRY_POINT_RENAME(usearch_handlePreviousExact)
1644#define usearch_last U_ICU_ENTRY_POINT_RENAME(usearch_last)
1645#define usearch_next U_ICU_ENTRY_POINT_RENAME(usearch_next)
1646#define usearch_open U_ICU_ENTRY_POINT_RENAME(usearch_open)
1647#define usearch_openFromCollator U_ICU_ENTRY_POINT_RENAME(usearch_openFromCollator)
1648#define usearch_preceding U_ICU_ENTRY_POINT_RENAME(usearch_preceding)
1649#define usearch_previous U_ICU_ENTRY_POINT_RENAME(usearch_previous)
1650#define usearch_reset U_ICU_ENTRY_POINT_RENAME(usearch_reset)
1651#define usearch_search U_ICU_ENTRY_POINT_RENAME(usearch_search)
1652#define usearch_searchBackwards U_ICU_ENTRY_POINT_RENAME(usearch_searchBackwards)
1653#define usearch_setAttribute U_ICU_ENTRY_POINT_RENAME(usearch_setAttribute)
1654#define usearch_setBreakIterator U_ICU_ENTRY_POINT_RENAME(usearch_setBreakIterator)
1655#define usearch_setCollator U_ICU_ENTRY_POINT_RENAME(usearch_setCollator)
1656#define usearch_setOffset U_ICU_ENTRY_POINT_RENAME(usearch_setOffset)
1657#define usearch_setPattern U_ICU_ENTRY_POINT_RENAME(usearch_setPattern)
1658#define usearch_setText U_ICU_ENTRY_POINT_RENAME(usearch_setText)
1659#define uset_add U_ICU_ENTRY_POINT_RENAME(uset_add)
1660#define uset_addAll U_ICU_ENTRY_POINT_RENAME(uset_addAll)
1661#define uset_addAllCodePoints U_ICU_ENTRY_POINT_RENAME(uset_addAllCodePoints)
1662#define uset_addRange U_ICU_ENTRY_POINT_RENAME(uset_addRange)
1663#define uset_addString U_ICU_ENTRY_POINT_RENAME(uset_addString)
1664#define uset_applyIntPropertyValue U_ICU_ENTRY_POINT_RENAME(uset_applyIntPropertyValue)
1665#define uset_applyPattern U_ICU_ENTRY_POINT_RENAME(uset_applyPattern)
1666#define uset_applyPropertyAlias U_ICU_ENTRY_POINT_RENAME(uset_applyPropertyAlias)
1667#define uset_charAt U_ICU_ENTRY_POINT_RENAME(uset_charAt)
1668#define uset_clear U_ICU_ENTRY_POINT_RENAME(uset_clear)
1669#define uset_clone U_ICU_ENTRY_POINT_RENAME(uset_clone)
1670#define uset_cloneAsThawed U_ICU_ENTRY_POINT_RENAME(uset_cloneAsThawed)
1671#define uset_close U_ICU_ENTRY_POINT_RENAME(uset_close)
1672#define uset_closeOver U_ICU_ENTRY_POINT_RENAME(uset_closeOver)
1673#define uset_compact U_ICU_ENTRY_POINT_RENAME(uset_compact)
1674#define uset_complement U_ICU_ENTRY_POINT_RENAME(uset_complement)
1675#define uset_complementAll U_ICU_ENTRY_POINT_RENAME(uset_complementAll)
1676#define uset_contains U_ICU_ENTRY_POINT_RENAME(uset_contains)
1677#define uset_containsAll U_ICU_ENTRY_POINT_RENAME(uset_containsAll)
1678#define uset_containsAllCodePoints U_ICU_ENTRY_POINT_RENAME(uset_containsAllCodePoints)
1679#define uset_containsNone U_ICU_ENTRY_POINT_RENAME(uset_containsNone)
1680#define uset_containsRange U_ICU_ENTRY_POINT_RENAME(uset_containsRange)
1681#define uset_containsSome U_ICU_ENTRY_POINT_RENAME(uset_containsSome)
1682#define uset_containsString U_ICU_ENTRY_POINT_RENAME(uset_containsString)
1683#define uset_equals U_ICU_ENTRY_POINT_RENAME(uset_equals)
1684#define uset_freeze U_ICU_ENTRY_POINT_RENAME(uset_freeze)
1685#define uset_getItem U_ICU_ENTRY_POINT_RENAME(uset_getItem)
1686#define uset_getItemCount U_ICU_ENTRY_POINT_RENAME(uset_getItemCount)
1687#define uset_getSerializedRange U_ICU_ENTRY_POINT_RENAME(uset_getSerializedRange)
1688#define uset_getSerializedRangeCount U_ICU_ENTRY_POINT_RENAME(uset_getSerializedRangeCount)
1689#define uset_getSerializedSet U_ICU_ENTRY_POINT_RENAME(uset_getSerializedSet)
1690#define uset_indexOf U_ICU_ENTRY_POINT_RENAME(uset_indexOf)
1691#define uset_isEmpty U_ICU_ENTRY_POINT_RENAME(uset_isEmpty)
1692#define uset_isFrozen U_ICU_ENTRY_POINT_RENAME(uset_isFrozen)
1693#define uset_open U_ICU_ENTRY_POINT_RENAME(uset_open)
1694#define uset_openEmpty U_ICU_ENTRY_POINT_RENAME(uset_openEmpty)
1695#define uset_openPattern U_ICU_ENTRY_POINT_RENAME(uset_openPattern)
1696#define uset_openPatternOptions U_ICU_ENTRY_POINT_RENAME(uset_openPatternOptions)
1697#define uset_remove U_ICU_ENTRY_POINT_RENAME(uset_remove)
1698#define uset_removeAll U_ICU_ENTRY_POINT_RENAME(uset_removeAll)
1699#define uset_removeAllStrings U_ICU_ENTRY_POINT_RENAME(uset_removeAllStrings)
1700#define uset_removeRange U_ICU_ENTRY_POINT_RENAME(uset_removeRange)
1701#define uset_removeString U_ICU_ENTRY_POINT_RENAME(uset_removeString)
1702#define uset_resemblesPattern U_ICU_ENTRY_POINT_RENAME(uset_resemblesPattern)
1703#define uset_retain U_ICU_ENTRY_POINT_RENAME(uset_retain)
1704#define uset_retainAll U_ICU_ENTRY_POINT_RENAME(uset_retainAll)
1705#define uset_serialize U_ICU_ENTRY_POINT_RENAME(uset_serialize)
1706#define uset_serializedContains U_ICU_ENTRY_POINT_RENAME(uset_serializedContains)
1707#define uset_set U_ICU_ENTRY_POINT_RENAME(uset_set)
1708#define uset_setSerializedToOne U_ICU_ENTRY_POINT_RENAME(uset_setSerializedToOne)
1709#define uset_size U_ICU_ENTRY_POINT_RENAME(uset_size)
1710#define uset_span U_ICU_ENTRY_POINT_RENAME(uset_span)
1711#define uset_spanBack U_ICU_ENTRY_POINT_RENAME(uset_spanBack)
1712#define uset_spanBackUTF8 U_ICU_ENTRY_POINT_RENAME(uset_spanBackUTF8)
1713#define uset_spanUTF8 U_ICU_ENTRY_POINT_RENAME(uset_spanUTF8)
1714#define uset_toPattern U_ICU_ENTRY_POINT_RENAME(uset_toPattern)
1715#define uspoof_areConfusable U_ICU_ENTRY_POINT_RENAME(uspoof_areConfusable)
1716#define uspoof_areConfusableUTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_areConfusableUTF8)
1717#define uspoof_areConfusableUnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_areConfusableUnicodeString)
1718#define uspoof_check U_ICU_ENTRY_POINT_RENAME(uspoof_check)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001719#define uspoof_check2 U_ICU_ENTRY_POINT_RENAME(uspoof_check2)
1720#define uspoof_check2UTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_check2UTF8)
1721#define uspoof_check2UnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_check2UnicodeString)
claireho50294ea2010-05-03 15:44:48 -07001722#define uspoof_checkUTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_checkUTF8)
1723#define uspoof_checkUnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_checkUnicodeString)
1724#define uspoof_clone U_ICU_ENTRY_POINT_RENAME(uspoof_clone)
1725#define uspoof_close U_ICU_ENTRY_POINT_RENAME(uspoof_close)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001726#define uspoof_closeCheckResult U_ICU_ENTRY_POINT_RENAME(uspoof_closeCheckResult)
claireho50294ea2010-05-03 15:44:48 -07001727#define uspoof_getAllowedChars U_ICU_ENTRY_POINT_RENAME(uspoof_getAllowedChars)
1728#define uspoof_getAllowedLocales U_ICU_ENTRY_POINT_RENAME(uspoof_getAllowedLocales)
1729#define uspoof_getAllowedUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_getAllowedUnicodeSet)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001730#define uspoof_getCheckResultChecks U_ICU_ENTRY_POINT_RENAME(uspoof_getCheckResultChecks)
1731#define uspoof_getCheckResultNumerics U_ICU_ENTRY_POINT_RENAME(uspoof_getCheckResultNumerics)
1732#define uspoof_getCheckResultRestrictionLevel U_ICU_ENTRY_POINT_RENAME(uspoof_getCheckResultRestrictionLevel)
claireho50294ea2010-05-03 15:44:48 -07001733#define uspoof_getChecks U_ICU_ENTRY_POINT_RENAME(uspoof_getChecks)
Craig Cornelius83933352013-06-14 14:20:29 -07001734#define uspoof_getInclusionSet U_ICU_ENTRY_POINT_RENAME(uspoof_getInclusionSet)
1735#define uspoof_getInclusionUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_getInclusionUnicodeSet)
1736#define uspoof_getRecommendedSet U_ICU_ENTRY_POINT_RENAME(uspoof_getRecommendedSet)
1737#define uspoof_getRecommendedUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_getRecommendedUnicodeSet)
1738#define uspoof_getRestrictionLevel U_ICU_ENTRY_POINT_RENAME(uspoof_getRestrictionLevel)
claireho50294ea2010-05-03 15:44:48 -07001739#define uspoof_getSkeleton U_ICU_ENTRY_POINT_RENAME(uspoof_getSkeleton)
1740#define uspoof_getSkeletonUTF8 U_ICU_ENTRY_POINT_RENAME(uspoof_getSkeletonUTF8)
1741#define uspoof_getSkeletonUnicodeString U_ICU_ENTRY_POINT_RENAME(uspoof_getSkeletonUnicodeString)
Fredrik Roubertc14898b2015-09-28 19:31:03 +02001742#define uspoof_internalInitStatics U_ICU_ENTRY_POINT_RENAME(uspoof_internalInitStatics)
claireho50294ea2010-05-03 15:44:48 -07001743#define uspoof_open U_ICU_ENTRY_POINT_RENAME(uspoof_open)
Fredrik Roubert64339d32016-10-21 19:43:16 +02001744#define uspoof_openCheckResult U_ICU_ENTRY_POINT_RENAME(uspoof_openCheckResult)
claireho50294ea2010-05-03 15:44:48 -07001745#define uspoof_openFromSerialized U_ICU_ENTRY_POINT_RENAME(uspoof_openFromSerialized)
1746#define uspoof_openFromSource U_ICU_ENTRY_POINT_RENAME(uspoof_openFromSource)
1747#define uspoof_serialize U_ICU_ENTRY_POINT_RENAME(uspoof_serialize)
1748#define uspoof_setAllowedChars U_ICU_ENTRY_POINT_RENAME(uspoof_setAllowedChars)
1749#define uspoof_setAllowedLocales U_ICU_ENTRY_POINT_RENAME(uspoof_setAllowedLocales)
1750#define uspoof_setAllowedUnicodeSet U_ICU_ENTRY_POINT_RENAME(uspoof_setAllowedUnicodeSet)
1751#define uspoof_setChecks U_ICU_ENTRY_POINT_RENAME(uspoof_setChecks)
Craig Cornelius83933352013-06-14 14:20:29 -07001752#define uspoof_setRestrictionLevel U_ICU_ENTRY_POINT_RENAME(uspoof_setRestrictionLevel)
claireho50294ea2010-05-03 15:44:48 -07001753#define uspoof_swap U_ICU_ENTRY_POINT_RENAME(uspoof_swap)
1754#define usprep_close U_ICU_ENTRY_POINT_RENAME(usprep_close)
1755#define usprep_open U_ICU_ENTRY_POINT_RENAME(usprep_open)
1756#define usprep_openByType U_ICU_ENTRY_POINT_RENAME(usprep_openByType)
1757#define usprep_prepare U_ICU_ENTRY_POINT_RENAME(usprep_prepare)
1758#define usprep_swap U_ICU_ENTRY_POINT_RENAME(usprep_swap)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001759#define ustr_hashCharsN U_ICU_ENTRY_POINT_RENAME(ustr_hashCharsN)
1760#define ustr_hashICharsN U_ICU_ENTRY_POINT_RENAME(ustr_hashICharsN)
1761#define ustr_hashUCharsN U_ICU_ENTRY_POINT_RENAME(ustr_hashUCharsN)
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001762#define ustrcase_getCaseLocale U_ICU_ENTRY_POINT_RENAME(ustrcase_getCaseLocale)
Fredrik Roubertffdc27e2017-11-27 19:42:42 +01001763#define ustrcase_getTitleBreakIterator U_ICU_ENTRY_POINT_RENAME(ustrcase_getTitleBreakIterator)
Craig Cornelius103e9ff2012-10-09 17:03:29 -07001764#define ustrcase_internalFold U_ICU_ENTRY_POINT_RENAME(ustrcase_internalFold)
1765#define ustrcase_internalToLower U_ICU_ENTRY_POINT_RENAME(ustrcase_internalToLower)
1766#define ustrcase_internalToTitle U_ICU_ENTRY_POINT_RENAME(ustrcase_internalToTitle)
1767#define ustrcase_internalToUpper U_ICU_ENTRY_POINT_RENAME(ustrcase_internalToUpper)
1768#define ustrcase_map U_ICU_ENTRY_POINT_RENAME(ustrcase_map)
Fredrik Roubert0596fae2017-04-18 21:34:02 +02001769#define ustrcase_mapWithOverlap U_ICU_ENTRY_POINT_RENAME(ustrcase_mapWithOverlap)
claireho50294ea2010-05-03 15:44:48 -07001770#define utext_char32At U_ICU_ENTRY_POINT_RENAME(utext_char32At)
1771#define utext_clone U_ICU_ENTRY_POINT_RENAME(utext_clone)
1772#define utext_close U_ICU_ENTRY_POINT_RENAME(utext_close)
claireho50294ea2010-05-03 15:44:48 -07001773#define utext_copy U_ICU_ENTRY_POINT_RENAME(utext_copy)
1774#define utext_current32 U_ICU_ENTRY_POINT_RENAME(utext_current32)
1775#define utext_equals U_ICU_ENTRY_POINT_RENAME(utext_equals)
1776#define utext_extract U_ICU_ENTRY_POINT_RENAME(utext_extract)
1777#define utext_freeze U_ICU_ENTRY_POINT_RENAME(utext_freeze)
1778#define utext_getNativeIndex U_ICU_ENTRY_POINT_RENAME(utext_getNativeIndex)
1779#define utext_getPreviousNativeIndex U_ICU_ENTRY_POINT_RENAME(utext_getPreviousNativeIndex)
1780#define utext_hasMetaData U_ICU_ENTRY_POINT_RENAME(utext_hasMetaData)
1781#define utext_isLengthExpensive U_ICU_ENTRY_POINT_RENAME(utext_isLengthExpensive)
1782#define utext_isWritable U_ICU_ENTRY_POINT_RENAME(utext_isWritable)
1783#define utext_moveIndex32 U_ICU_ENTRY_POINT_RENAME(utext_moveIndex32)
1784#define utext_nativeLength U_ICU_ENTRY_POINT_RENAME(utext_nativeLength)
1785#define utext_next32 U_ICU_ENTRY_POINT_RENAME(utext_next32)
1786#define utext_next32From U_ICU_ENTRY_POINT_RENAME(utext_next32From)
1787#define utext_openCharacterIterator U_ICU_ENTRY_POINT_RENAME(utext_openCharacterIterator)
1788#define utext_openConstUnicodeString U_ICU_ENTRY_POINT_RENAME(utext_openConstUnicodeString)
1789#define utext_openReplaceable U_ICU_ENTRY_POINT_RENAME(utext_openReplaceable)
1790#define utext_openUChars U_ICU_ENTRY_POINT_RENAME(utext_openUChars)
1791#define utext_openUTF8 U_ICU_ENTRY_POINT_RENAME(utext_openUTF8)
1792#define utext_openUnicodeString U_ICU_ENTRY_POINT_RENAME(utext_openUnicodeString)
1793#define utext_previous32 U_ICU_ENTRY_POINT_RENAME(utext_previous32)
1794#define utext_previous32From U_ICU_ENTRY_POINT_RENAME(utext_previous32From)
1795#define utext_replace U_ICU_ENTRY_POINT_RENAME(utext_replace)
1796#define utext_setNativeIndex U_ICU_ENTRY_POINT_RENAME(utext_setNativeIndex)
1797#define utext_setup U_ICU_ENTRY_POINT_RENAME(utext_setup)
1798#define utf8_appendCharSafeBody U_ICU_ENTRY_POINT_RENAME(utf8_appendCharSafeBody)
1799#define utf8_back1SafeBody U_ICU_ENTRY_POINT_RENAME(utf8_back1SafeBody)
1800#define utf8_countTrailBytes U_ICU_ENTRY_POINT_RENAME(utf8_countTrailBytes)
1801#define utf8_nextCharSafeBody U_ICU_ENTRY_POINT_RENAME(utf8_nextCharSafeBody)
1802#define utf8_prevCharSafeBody U_ICU_ENTRY_POINT_RENAME(utf8_prevCharSafeBody)
1803#define utmscale_fromInt64 U_ICU_ENTRY_POINT_RENAME(utmscale_fromInt64)
1804#define utmscale_getTimeScaleValue U_ICU_ENTRY_POINT_RENAME(utmscale_getTimeScaleValue)
1805#define utmscale_toInt64 U_ICU_ENTRY_POINT_RENAME(utmscale_toInt64)
1806#define utrace_cleanup U_ICU_ENTRY_POINT_RENAME(utrace_cleanup)
1807#define utrace_data U_ICU_ENTRY_POINT_RENAME(utrace_data)
1808#define utrace_entry U_ICU_ENTRY_POINT_RENAME(utrace_entry)
1809#define utrace_exit U_ICU_ENTRY_POINT_RENAME(utrace_exit)
1810#define utrace_format U_ICU_ENTRY_POINT_RENAME(utrace_format)
1811#define utrace_functionName U_ICU_ENTRY_POINT_RENAME(utrace_functionName)
1812#define utrace_getFunctions U_ICU_ENTRY_POINT_RENAME(utrace_getFunctions)
1813#define utrace_getLevel U_ICU_ENTRY_POINT_RENAME(utrace_getLevel)
claireho50294ea2010-05-03 15:44:48 -07001814#define utrace_setFunctions U_ICU_ENTRY_POINT_RENAME(utrace_setFunctions)
1815#define utrace_setLevel U_ICU_ENTRY_POINT_RENAME(utrace_setLevel)
1816#define utrace_vformat U_ICU_ENTRY_POINT_RENAME(utrace_vformat)
1817#define utrans_clone U_ICU_ENTRY_POINT_RENAME(utrans_clone)
1818#define utrans_close U_ICU_ENTRY_POINT_RENAME(utrans_close)
1819#define utrans_countAvailableIDs U_ICU_ENTRY_POINT_RENAME(utrans_countAvailableIDs)
1820#define utrans_getAvailableID U_ICU_ENTRY_POINT_RENAME(utrans_getAvailableID)
1821#define utrans_getID U_ICU_ENTRY_POINT_RENAME(utrans_getID)
ccorneliusfceb3982014-04-16 12:27:14 -07001822#define utrans_getSourceSet U_ICU_ENTRY_POINT_RENAME(utrans_getSourceSet)
claireho50294ea2010-05-03 15:44:48 -07001823#define utrans_getUnicodeID U_ICU_ENTRY_POINT_RENAME(utrans_getUnicodeID)
1824#define utrans_open U_ICU_ENTRY_POINT_RENAME(utrans_open)
1825#define utrans_openIDs U_ICU_ENTRY_POINT_RENAME(utrans_openIDs)
1826#define utrans_openInverse U_ICU_ENTRY_POINT_RENAME(utrans_openInverse)
1827#define utrans_openU U_ICU_ENTRY_POINT_RENAME(utrans_openU)
1828#define utrans_register U_ICU_ENTRY_POINT_RENAME(utrans_register)
1829#define utrans_rep_caseContextIterator U_ICU_ENTRY_POINT_RENAME(utrans_rep_caseContextIterator)
1830#define utrans_setFilter U_ICU_ENTRY_POINT_RENAME(utrans_setFilter)
1831#define utrans_stripRules U_ICU_ENTRY_POINT_RENAME(utrans_stripRules)
ccorneliusfceb3982014-04-16 12:27:14 -07001832#define utrans_toRules U_ICU_ENTRY_POINT_RENAME(utrans_toRules)
claireho50294ea2010-05-03 15:44:48 -07001833#define utrans_trans U_ICU_ENTRY_POINT_RENAME(utrans_trans)
1834#define utrans_transIncremental U_ICU_ENTRY_POINT_RENAME(utrans_transIncremental)
1835#define utrans_transIncrementalUChars U_ICU_ENTRY_POINT_RENAME(utrans_transIncrementalUChars)
1836#define utrans_transUChars U_ICU_ENTRY_POINT_RENAME(utrans_transUChars)
1837#define utrans_transliterator_cleanup U_ICU_ENTRY_POINT_RENAME(utrans_transliterator_cleanup)
1838#define utrans_unregister U_ICU_ENTRY_POINT_RENAME(utrans_unregister)
1839#define utrans_unregisterID U_ICU_ENTRY_POINT_RENAME(utrans_unregisterID)
1840#define utrie2_clone U_ICU_ENTRY_POINT_RENAME(utrie2_clone)
1841#define utrie2_cloneAsThawed U_ICU_ENTRY_POINT_RENAME(utrie2_cloneAsThawed)
1842#define utrie2_close U_ICU_ENTRY_POINT_RENAME(utrie2_close)
1843#define utrie2_enum U_ICU_ENTRY_POINT_RENAME(utrie2_enum)
1844#define utrie2_enumForLeadSurrogate U_ICU_ENTRY_POINT_RENAME(utrie2_enumForLeadSurrogate)
1845#define utrie2_freeze U_ICU_ENTRY_POINT_RENAME(utrie2_freeze)
1846#define utrie2_fromUTrie U_ICU_ENTRY_POINT_RENAME(utrie2_fromUTrie)
1847#define utrie2_get32 U_ICU_ENTRY_POINT_RENAME(utrie2_get32)
1848#define utrie2_get32FromLeadSurrogateCodeUnit U_ICU_ENTRY_POINT_RENAME(utrie2_get32FromLeadSurrogateCodeUnit)
claireho50294ea2010-05-03 15:44:48 -07001849#define utrie2_internalU8NextIndex U_ICU_ENTRY_POINT_RENAME(utrie2_internalU8NextIndex)
1850#define utrie2_internalU8PrevIndex U_ICU_ENTRY_POINT_RENAME(utrie2_internalU8PrevIndex)
1851#define utrie2_isFrozen U_ICU_ENTRY_POINT_RENAME(utrie2_isFrozen)
1852#define utrie2_open U_ICU_ENTRY_POINT_RENAME(utrie2_open)
1853#define utrie2_openDummy U_ICU_ENTRY_POINT_RENAME(utrie2_openDummy)
1854#define utrie2_openFromSerialized U_ICU_ENTRY_POINT_RENAME(utrie2_openFromSerialized)
1855#define utrie2_serialize U_ICU_ENTRY_POINT_RENAME(utrie2_serialize)
1856#define utrie2_set32 U_ICU_ENTRY_POINT_RENAME(utrie2_set32)
1857#define utrie2_set32ForLeadSurrogateCodeUnit U_ICU_ENTRY_POINT_RENAME(utrie2_set32ForLeadSurrogateCodeUnit)
1858#define utrie2_setRange32 U_ICU_ENTRY_POINT_RENAME(utrie2_setRange32)
1859#define utrie2_swap U_ICU_ENTRY_POINT_RENAME(utrie2_swap)
1860#define utrie_clone U_ICU_ENTRY_POINT_RENAME(utrie_clone)
1861#define utrie_close U_ICU_ENTRY_POINT_RENAME(utrie_close)
1862#define utrie_defaultGetFoldingOffset U_ICU_ENTRY_POINT_RENAME(utrie_defaultGetFoldingOffset)
1863#define utrie_enum U_ICU_ENTRY_POINT_RENAME(utrie_enum)
1864#define utrie_get32 U_ICU_ENTRY_POINT_RENAME(utrie_get32)
1865#define utrie_getData U_ICU_ENTRY_POINT_RENAME(utrie_getData)
1866#define utrie_open U_ICU_ENTRY_POINT_RENAME(utrie_open)
1867#define utrie_serialize U_ICU_ENTRY_POINT_RENAME(utrie_serialize)
1868#define utrie_set32 U_ICU_ENTRY_POINT_RENAME(utrie_set32)
1869#define utrie_setRange32 U_ICU_ENTRY_POINT_RENAME(utrie_setRange32)
1870#define utrie_swap U_ICU_ENTRY_POINT_RENAME(utrie_swap)
Victor Chang4578a1c2018-10-22 04:26:58 +01001871#define utrie_swapAnyVersion U_ICU_ENTRY_POINT_RENAME(utrie_swapAnyVersion)
claireho50294ea2010-05-03 15:44:48 -07001872#define utrie_unserialize U_ICU_ENTRY_POINT_RENAME(utrie_unserialize)
1873#define utrie_unserializeDummy U_ICU_ENTRY_POINT_RENAME(utrie_unserializeDummy)
1874#define vzone_clone U_ICU_ENTRY_POINT_RENAME(vzone_clone)
1875#define vzone_close U_ICU_ENTRY_POINT_RENAME(vzone_close)
1876#define vzone_countTransitionRules U_ICU_ENTRY_POINT_RENAME(vzone_countTransitionRules)
1877#define vzone_equals U_ICU_ENTRY_POINT_RENAME(vzone_equals)
1878#define vzone_getDynamicClassID U_ICU_ENTRY_POINT_RENAME(vzone_getDynamicClassID)
1879#define vzone_getLastModified U_ICU_ENTRY_POINT_RENAME(vzone_getLastModified)
1880#define vzone_getNextTransition U_ICU_ENTRY_POINT_RENAME(vzone_getNextTransition)
1881#define vzone_getOffset U_ICU_ENTRY_POINT_RENAME(vzone_getOffset)
1882#define vzone_getOffset2 U_ICU_ENTRY_POINT_RENAME(vzone_getOffset2)
1883#define vzone_getOffset3 U_ICU_ENTRY_POINT_RENAME(vzone_getOffset3)
1884#define vzone_getPreviousTransition U_ICU_ENTRY_POINT_RENAME(vzone_getPreviousTransition)
1885#define vzone_getRawOffset U_ICU_ENTRY_POINT_RENAME(vzone_getRawOffset)
1886#define vzone_getStaticClassID U_ICU_ENTRY_POINT_RENAME(vzone_getStaticClassID)
1887#define vzone_getTZURL U_ICU_ENTRY_POINT_RENAME(vzone_getTZURL)
1888#define vzone_hasSameRules U_ICU_ENTRY_POINT_RENAME(vzone_hasSameRules)
1889#define vzone_inDaylightTime U_ICU_ENTRY_POINT_RENAME(vzone_inDaylightTime)
1890#define vzone_openData U_ICU_ENTRY_POINT_RENAME(vzone_openData)
1891#define vzone_openID U_ICU_ENTRY_POINT_RENAME(vzone_openID)
1892#define vzone_setLastModified U_ICU_ENTRY_POINT_RENAME(vzone_setLastModified)
1893#define vzone_setRawOffset U_ICU_ENTRY_POINT_RENAME(vzone_setRawOffset)
1894#define vzone_setTZURL U_ICU_ENTRY_POINT_RENAME(vzone_setTZURL)
1895#define vzone_useDaylightTime U_ICU_ENTRY_POINT_RENAME(vzone_useDaylightTime)
1896#define vzone_write U_ICU_ENTRY_POINT_RENAME(vzone_write)
1897#define vzone_writeFromStart U_ICU_ENTRY_POINT_RENAME(vzone_writeFromStart)
1898#define vzone_writeSimple U_ICU_ENTRY_POINT_RENAME(vzone_writeSimple)
1899#define zrule_close U_ICU_ENTRY_POINT_RENAME(zrule_close)
1900#define zrule_equals U_ICU_ENTRY_POINT_RENAME(zrule_equals)
1901#define zrule_getDSTSavings U_ICU_ENTRY_POINT_RENAME(zrule_getDSTSavings)
1902#define zrule_getName U_ICU_ENTRY_POINT_RENAME(zrule_getName)
1903#define zrule_getRawOffset U_ICU_ENTRY_POINT_RENAME(zrule_getRawOffset)
1904#define zrule_isEquivalentTo U_ICU_ENTRY_POINT_RENAME(zrule_isEquivalentTo)
1905#define ztrans_adoptFrom U_ICU_ENTRY_POINT_RENAME(ztrans_adoptFrom)
1906#define ztrans_adoptTo U_ICU_ENTRY_POINT_RENAME(ztrans_adoptTo)
1907#define ztrans_clone U_ICU_ENTRY_POINT_RENAME(ztrans_clone)
1908#define ztrans_close U_ICU_ENTRY_POINT_RENAME(ztrans_close)
1909#define ztrans_equals U_ICU_ENTRY_POINT_RENAME(ztrans_equals)
1910#define ztrans_getDynamicClassID U_ICU_ENTRY_POINT_RENAME(ztrans_getDynamicClassID)
1911#define ztrans_getFrom U_ICU_ENTRY_POINT_RENAME(ztrans_getFrom)
1912#define ztrans_getStaticClassID U_ICU_ENTRY_POINT_RENAME(ztrans_getStaticClassID)
1913#define ztrans_getTime U_ICU_ENTRY_POINT_RENAME(ztrans_getTime)
1914#define ztrans_getTo U_ICU_ENTRY_POINT_RENAME(ztrans_getTo)
1915#define ztrans_open U_ICU_ENTRY_POINT_RENAME(ztrans_open)
1916#define ztrans_openEmpty U_ICU_ENTRY_POINT_RENAME(ztrans_openEmpty)
1917#define ztrans_setFrom U_ICU_ENTRY_POINT_RENAME(ztrans_setFrom)
1918#define ztrans_setTime U_ICU_ENTRY_POINT_RENAME(ztrans_setTime)
1919#define ztrans_setTo U_ICU_ENTRY_POINT_RENAME(ztrans_setTo)
1920
Victor Chang4578a1c2018-10-22 04:26:58 +01001921#endif /* !(defined(_MSC_VER) && defined(__INTELLISENSE__)) */
1922#endif /* U_DISABLE_RENAMING */
1923#endif /* URENAME_H */
Jean-Baptiste Querub13da9d2009-07-17 17:53:22 -07001924