ICU 50.1.2  50.1.2
ucol.h
Go to the documentation of this file.
1 /*
2 *******************************************************************************
3 * Copyright (c) 1996-2012, International Business Machines Corporation and others.
4 * All Rights Reserved.
5 *******************************************************************************
6 */
7 
8 #ifndef UCOL_H
9 #define UCOL_H
10 
11 #include "unicode/utypes.h"
12 
13 #if !UCONFIG_NO_COLLATION
14 
15 #include "unicode/unorm.h"
16 #include "unicode/localpointer.h"
17 #include "unicode/parseerr.h"
18 #include "unicode/uloc.h"
19 #include "unicode/uset.h"
20 #include "unicode/uscript.h"
21 
58 struct UCollator;
62 typedef struct UCollator UCollator;
63 
64 
77 typedef enum {
83  UCOL_LESS = -1
85 
86 
93 typedef enum {
96 
105  UCOL_CE_STRENGTH_LIMIT,
110  UCOL_STRENGTH_LIMIT,
111 
115  UCOL_OFF = 16,
119  UCOL_ON = 17,
120 
125 
131 
132  UCOL_ATTRIBUTE_VALUE_COUNT
133 
135 
145  typedef enum {
207 
235 
240 typedef enum {
331 } UColAttribute;
332 
336 typedef enum {
351 } UColRuleOption ;
352 
370 U_STABLE UCollator* U_EXPORT2
371 ucol_open(const char *loc, UErrorCode *status);
372 
398 U_STABLE UCollator* U_EXPORT2
399 ucol_openRules( const UChar *rules,
400  int32_t rulesLength,
401  UColAttributeValue normalizationMode,
402  UCollationStrength strength,
403  UParseError *parseError,
404  UErrorCode *status);
405 
440 U_STABLE UCollator* U_EXPORT2
441 ucol_openFromShortString( const char *definition,
442  UBool forceDefaults,
443  UParseError *parseError,
444  UErrorCode *status);
445 
446 #ifndef U_HIDE_DEPRECATED_API
447 
460 U_DEPRECATED int32_t U_EXPORT2
461 ucol_getContractions( const UCollator *coll,
462  USet *conts,
463  UErrorCode *status);
464 #endif /* U_HIDE_DEPRECATED_API */
465 
477 U_STABLE void U_EXPORT2
479  USet *contractions, USet *expansions,
480  UBool addPrefixes, UErrorCode *status);
481 
492 U_STABLE void U_EXPORT2
493 ucol_close(UCollator *coll);
494 
495 #if U_SHOW_CPLUSPLUS_API
496 
498 
509 
511 
512 #endif
513 
529 U_STABLE UCollationResult U_EXPORT2
530 ucol_strcoll( const UCollator *coll,
531  const UChar *source,
532  int32_t sourceLength,
533  const UChar *target,
534  int32_t targetLength);
535 
554 U_DRAFT UCollationResult U_EXPORT2
556  const UCollator *coll,
557  const char *source,
558  int32_t sourceLength,
559  const char *target,
560  int32_t targetLength,
561  UErrorCode *status);
562 
577 U_STABLE UBool U_EXPORT2
578 ucol_greater(const UCollator *coll,
579  const UChar *source, int32_t sourceLength,
580  const UChar *target, int32_t targetLength);
581 
596 U_STABLE UBool U_EXPORT2
597 ucol_greaterOrEqual(const UCollator *coll,
598  const UChar *source, int32_t sourceLength,
599  const UChar *target, int32_t targetLength);
600 
615 U_STABLE UBool U_EXPORT2
616 ucol_equal(const UCollator *coll,
617  const UChar *source, int32_t sourceLength,
618  const UChar *target, int32_t targetLength);
619 
632 U_STABLE UCollationResult U_EXPORT2
633 ucol_strcollIter( const UCollator *coll,
634  UCharIterator *sIter,
635  UCharIterator *tIter,
636  UErrorCode *status);
637 
647 U_STABLE UCollationStrength U_EXPORT2
648 ucol_getStrength(const UCollator *coll);
649 
659 U_STABLE void U_EXPORT2
661  UCollationStrength strength);
662 
679 U_STABLE int32_t U_EXPORT2
680 ucol_getReorderCodes(const UCollator* coll,
681  int32_t* dest,
682  int32_t destCapacity,
683  UErrorCode *pErrorCode);
719 U_STABLE void U_EXPORT2
721  const int32_t* reorderCodes,
722  int32_t reorderCodesLength,
723  UErrorCode *pErrorCode);
724 
741 U_STABLE int32_t U_EXPORT2
742 ucol_getEquivalentReorderCodes(int32_t reorderCode,
743  int32_t* dest,
744  int32_t destCapacity,
745  UErrorCode *pErrorCode);
746 
759 U_STABLE int32_t U_EXPORT2
760 ucol_getDisplayName( const char *objLoc,
761  const char *dispLoc,
762  UChar *result,
763  int32_t resultLength,
764  UErrorCode *status);
765 
775 U_STABLE const char* U_EXPORT2
776 ucol_getAvailable(int32_t localeIndex);
777 
786 U_STABLE int32_t U_EXPORT2
787 ucol_countAvailable(void);
788 
789 #if !UCONFIG_NO_SERVICE
790 
798 U_STABLE UEnumeration* U_EXPORT2
800 #endif
801 
811 U_STABLE UEnumeration* U_EXPORT2
813 
825 U_STABLE UEnumeration* U_EXPORT2
826 ucol_getKeywordValues(const char *keyword, UErrorCode *status);
827 
844 U_STABLE UEnumeration* U_EXPORT2
845 ucol_getKeywordValuesForLocale(const char* key,
846  const char* locale,
847  UBool commonlyUsed,
848  UErrorCode* status);
849 
880 U_STABLE int32_t U_EXPORT2
881 ucol_getFunctionalEquivalent(char* result, int32_t resultCapacity,
882  const char* keyword, const char* locale,
883  UBool* isAvailable, UErrorCode* status);
884 
893 U_STABLE const UChar* U_EXPORT2
894 ucol_getRules( const UCollator *coll,
895  int32_t *length);
896 
917 U_STABLE int32_t U_EXPORT2
919  const char *locale,
920  char *buffer,
921  int32_t capacity,
922  UErrorCode *status);
923 
944 U_STABLE int32_t U_EXPORT2
945 ucol_normalizeShortDefinitionString(const char *source,
946  char *destination,
947  int32_t capacity,
948  UParseError *parseError,
949  UErrorCode *status);
950 
951 
971 U_STABLE int32_t U_EXPORT2
972 ucol_getSortKey(const UCollator *coll,
973  const UChar *source,
974  int32_t sourceLength,
975  uint8_t *result,
976  int32_t resultLength);
977 
978 
999 U_STABLE int32_t U_EXPORT2
1000 ucol_nextSortKeyPart(const UCollator *coll,
1001  UCharIterator *iter,
1002  uint32_t state[2],
1003  uint8_t *dest, int32_t count,
1004  UErrorCode *status);
1005 
1013 typedef enum {
1020  UCOL_BOUND_VALUE_COUNT
1021 } UColBoundMode;
1022 
1060 U_STABLE int32_t U_EXPORT2
1061 ucol_getBound(const uint8_t *source,
1062  int32_t sourceLength,
1063  UColBoundMode boundType,
1064  uint32_t noOfLevels,
1065  uint8_t *result,
1066  int32_t resultLength,
1067  UErrorCode *status);
1068 
1077 U_STABLE void U_EXPORT2
1078 ucol_getVersion(const UCollator* coll, UVersionInfo info);
1079 
1087 U_STABLE void U_EXPORT2
1088 ucol_getUCAVersion(const UCollator* coll, UVersionInfo info);
1089 
1112 U_STABLE int32_t U_EXPORT2
1113 ucol_mergeSortkeys(const uint8_t *src1, int32_t src1Length,
1114  const uint8_t *src2, int32_t src2Length,
1115  uint8_t *dest, int32_t destCapacity);
1116 
1128 U_STABLE void U_EXPORT2
1130 
1142 U_STABLE UColAttributeValue U_EXPORT2
1143 ucol_getAttribute(const UCollator *coll, UColAttribute attr, UErrorCode *status);
1144 
1164 U_STABLE uint32_t U_EXPORT2
1166  const UChar *varTop, int32_t len,
1167  UErrorCode *status);
1168 
1180 U_STABLE uint32_t U_EXPORT2 ucol_getVariableTop(const UCollator *coll, UErrorCode *status);
1181 
1193 U_STABLE void U_EXPORT2
1194 ucol_restoreVariableTop(UCollator *coll, const uint32_t varTop, UErrorCode *status);
1195 
1218 U_STABLE UCollator* U_EXPORT2
1219 ucol_safeClone(const UCollator *coll,
1220  void *stackBuffer,
1221  int32_t *pBufferSize,
1222  UErrorCode *status);
1223 
1227 #define U_COL_SAFECLONE_BUFFERSIZE 528
1228 
1244 U_STABLE int32_t U_EXPORT2
1245 ucol_getRulesEx(const UCollator *coll, UColRuleOption delta, UChar *buffer, int32_t bufferLen);
1246 
1247 #ifndef U_HIDE_DEPRECATED_API
1248 
1262 U_DEPRECATED const char * U_EXPORT2
1263 ucol_getLocale(const UCollator *coll, ULocDataLocaleType type, UErrorCode *status);
1264 #endif /* U_HIDE_DEPRECATED_API */
1265 
1280 U_STABLE const char * U_EXPORT2
1281 ucol_getLocaleByType(const UCollator *coll, ULocDataLocaleType type, UErrorCode *status);
1282 
1293 U_STABLE USet * U_EXPORT2
1294 ucol_getTailoredSet(const UCollator *coll, UErrorCode *status);
1295 
1296 #ifndef U_HIDE_INTERNAL_API
1297 
1309 ucol_getAttributeOrDefault(const UCollator *coll, UColAttribute attr, UErrorCode *status);
1310 
1319 U_INTERNAL UBool U_EXPORT2
1320 ucol_equals(const UCollator *source, const UCollator *target);
1321 
1333 U_INTERNAL int32_t U_EXPORT2
1334 ucol_getUnsafeSet( const UCollator *coll,
1335  USet *unsafe,
1336  UErrorCode *status);
1337 
1341 U_INTERNAL void U_EXPORT2
1342 ucol_forgetUCA(void);
1343 
1364 U_INTERNAL void U_EXPORT2
1365 ucol_prepareShortStringOpen( const char *definition,
1366  UBool forceDefaults,
1367  UParseError *parseError,
1368  UErrorCode *status);
1369 #endif /* U_HIDE_INTERNAL_API */
1370 
1382 U_STABLE int32_t U_EXPORT2
1383 ucol_cloneBinary(const UCollator *coll,
1384  uint8_t *buffer, int32_t capacity,
1385  UErrorCode *status);
1386 
1404 U_STABLE UCollator* U_EXPORT2
1405 ucol_openBinary(const uint8_t *bin, int32_t length,
1406  const UCollator *base,
1407  UErrorCode *status);
1408 
1409 
1410 #endif /* #if !UCONFIG_NO_COLLATION */
1411 
1412 #endif
"Smart pointer" class, closes a UCollator via ucol_close().
uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]
The binary form of a version on ICU APIs is an array of 4 uint8_t.
Definition: uversion.h:57
const UChar * ucol_getRules(const UCollator *coll, int32_t *length)
Get the collation tailoring rules from a UCollator.
Characters with the currency property.
Definition: ucol.h:193
string a < string b
Definition: ucol.h:83
Turn the feature on - works for UCOL_FRENCH_COLLATION, UCOL_CASE_LEVEL, UCOL_HIRAGANA_QUATERNARY_MODE...
Definition: ucol.h:119
Characters with the symbol property.
Definition: ucol.h:187
Retrieves the "UCA rules" concatenated with the tailoring rules.
Definition: ucol.h:350
UBool ucol_equal(const UCollator *coll, const UChar *source, int32_t sourceLength, const UChar *target, int32_t targetLength)
Compare two strings for equality.
A special reordering code that is used to specify all other codes used for reordering except for the ...
Definition: ucol.h:163
UColAttributeValue ucol_getAttribute(const UCollator *coll, UColAttribute attr, UErrorCode *status)
Universal attribute getter.
void ucol_getUCAVersion(const UCollator *coll, UVersionInfo info)
Gets the UCA version information for a Collator.
UCollationResult ucol_strcoll(const UCollator *coll, const UChar *source, int32_t sourceLength, const UChar *target, int32_t targetLength)
Compare two strings.
upper bound that will match all the strings that have the same initial substring as the given string ...
Definition: ucol.h:1019
int32_t ucol_getSortKey(const UCollator *coll, const UChar *source, int32_t sourceLength, uint8_t *result, int32_t resultLength)
Get a sort key for a string from a UCollator.
lower bound
Definition: ucol.h:1015
Controls the ordering of upper and lower case letters.
Definition: ucol.h:267
int32_t ucol_getReorderCodes(const UCollator *coll, int32_t *dest, int32_t destCapacity, UErrorCode *pErrorCode)
Retrieves the reordering codes for this collator.
UCollationResult
UCOL_LESS is returned if source string is compared to be less than target string in the u_strcoll() m...
Definition: ucol.h:77
Retrieves the tailoring rules only.
Definition: ucol.h:342
int32_t ucol_getEquivalentReorderCodes(int32_t reorderCode, int32_t *dest, int32_t destCapacity, UErrorCode *pErrorCode)
Retrieves the reorder codes that are grouped with the given reorder code.
uint32_t ucol_setVariableTop(UCollator *coll, const UChar *varTop, int32_t len, UErrorCode *status)
Variable top is a two byte primary value which causes all the codepoints with primary values that are...
Valid for UCOL_ALTERNATE_HANDLING.
Definition: ucol.h:124
Controls whether the normalization check and necessary normalizations are performed.
Definition: ucol.h:287
struct UEnumeration UEnumeration
structure representing an enumeration object instance
Definition: uenum.h:39
int32_t ucol_countAvailable(void)
Determine how many locales have collation rules available.
void ucol_getContractionsAndExpansions(const UCollator *coll, USet *contractions, USet *expansions, UBool addPrefixes, UErrorCode *status)
Get a set containing the expansions defined by the collator.
C API for code unit iteration.
Definition: uiter.h:339
USet * ucol_getTailoredSet(const UCollator *coll, UErrorCode *status)
Get an Unicode set that contains all the characters and sequences tailored in this collator...
accepted by most attributes
Definition: ucol.h:95
#define U_INTERNAL
This is used to declare a function as an internal ICU C API.
Definition: umachine.h:117
string a == string b
Definition: ucol.h:79
int32_t ucol_getRulesEx(const UCollator *coll, UColRuleOption delta, UChar *buffer, int32_t bufferLen)
Returns current rules.
UColAttributeValue ucol_getAttributeOrDefault(const UCollator *coll, UColAttribute attr, UErrorCode *status)
Universal attribute getter that returns UCOL_DEFAULT if the value is default.
UColAttributeValue UCollationStrength
Base letter represents a primary difference.
Definition: ucol.h:234
Characters with the digit property.
Definition: ucol.h:199
Default collation strength.
Definition: ucol.h:104
Valid for UCOL_CASE_FIRST - lower case sorts before upper case.
Definition: ucol.h:128
C API: Unicode Script Information.
C API: Unicode Set.
UColReorderCode
Enum containing the codes for reordering segments of the collation table that are not script codes...
Definition: ucol.h:145
void ucol_setReorderCodes(UCollator *coll, const int32_t *reorderCodes, int32_t reorderCodesLength, UErrorCode *pErrorCode)
Sets the reordering codes for this collator.
UColAttribute
Attributes that collation service understands.
Definition: ucol.h:240
Turn the feature off - works for UCOL_FRENCH_COLLATION, UCOL_CASE_LEVEL, UCOL_HIRAGANA_QUATERNARY_MOD...
Definition: ucol.h:115
#define U_DEPRECATED
This is used to declare a function as a deprecated public ICU C API.
Definition: umachine.h:113
uint32_t ucol_getVariableTop(const UCollator *coll, UErrorCode *status)
Gets the variable top value of a Collator.
UEnumeration * ucol_openAvailableLocales(UErrorCode *status)
Create a string enumerator of all locales for which a valid collator may be opened.
A special reordering code that is used to specify no reordering codes.
Definition: ucol.h:156
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition: uversion.h:129
UBool ucol_equals(const UCollator *source, const UCollator *target)
Check whether two collators are equal.
upper bound that will match strings of exact size
Definition: ucol.h:1017
Attribute for direction of secondary weights - used in Canadian French.
Definition: ucol.h:247
The strength attribute.
Definition: ucol.h:304
When turned on, this attribute generates a collation key for the numeric value of substrings of digit...
Definition: ucol.h:325
int32_t ucol_cloneBinary(const UCollator *coll, uint8_t *buffer, int32_t capacity, UErrorCode *status)
Creates a binary image of a collator.
Secondary collation strength.
Definition: ucol.h:100
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
"Smart pointer" definition macro, deletes objects via the closeFunction.
Definition: localpointer.h:290
void ucol_restoreVariableTop(UCollator *coll, const uint32_t varTop, UErrorCode *status)
Sets the variable top to a collation element value supplied.
When turned on, this attribute positions Hiragana before all non-ignorables on quaternary level This ...
Definition: ucol.h:315
Controls whether an extra case level (positioned before the third level) is generated or not...
Definition: ucol.h:277
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
int32_t ucol_mergeSortkeys(const uint8_t *src1, int32_t src1Length, const uint8_t *src2, int32_t src2Length, uint8_t *dest, int32_t destCapacity)
Merge two sort keys.
C API: Unicode Normalization.
int32_t ucol_getContractions(const UCollator *coll, USet *conts, UErrorCode *status)
Get a set containing the contractions defined by the collator.
upper case sorts before lower case
Definition: ucol.h:130
The first entry in the enumeration of reordering groups.
Definition: ucol.h:175
int32_t ucol_nextSortKeyPart(const UCollator *coll, UCharIterator *iter, uint32_t state[2], uint8_t *dest, int32_t count, UErrorCode *status)
Gets the next count bytes of a sort key.
UCollator * ucol_openBinary(const uint8_t *bin, int32_t length, const UCollator *base, UErrorCode *status)
Opens a collator from a collator binary image created using ucol_cloneBinary.
void ucol_prepareShortStringOpen(const char *definition, UBool forceDefaults, UParseError *parseError, UErrorCode *status)
Touches all resources needed for instantiating a collator from a short string definition, thus filling up the cache.
const char * ucol_getAvailable(int32_t localeIndex)
Get a locale for which collation rules are available.
void ucol_close(UCollator *coll)
Close a UCollator.
Tertiary collation strength.
Definition: ucol.h:102
UCollationResult ucol_strcollIter(const UCollator *coll, UCharIterator *sIter, UCharIterator *tIter, UErrorCode *status)
Compare two UTF-8 encoded trings.
int32_t ucol_getDisplayName(const char *objLoc, const char *dispLoc, UChar *result, int32_t resultLength, UErrorCode *status)
Get the display name for a UCollator.
UEnumeration * ucol_getKeywordValuesForLocale(const char *key, const char *locale, UBool commonlyUsed, UErrorCode *status)
Given a key and a locale, returns an array of string values in a preferred order that would make a di...
A special reordering code that is used to specify the default reordering codes for a locale...
Definition: ucol.h:151
const char * ucol_getLocale(const UCollator *coll, ULocDataLocaleType type, UErrorCode *status)
gets the locale name of the collator.
void ucol_getVersion(const UCollator *coll, UVersionInfo info)
Gets the version information for a Collator.
uint16_t UChar
Define UChar to be UCHAR_TYPE, if that is #defined (for example, to char16_t), or wchar_t if that is ...
Definition: umachine.h:278
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition: uversion.h:130
struct USet USet
Definition: ucnv.h:67
UBool ucol_greaterOrEqual(const UCollator *coll, const UChar *source, int32_t sourceLength, const UChar *target, int32_t targetLength)
Determine if one string is greater than or equal to another.
string a > string b
Definition: ucol.h:81
C API: Parse Error Information.
int32_t ucol_normalizeShortDefinitionString(const char *source, char *destination, int32_t capacity, UParseError *parseError, UErrorCode *status)
Verifies and normalizes short definition string.
UCollator * ucol_openRules(const UChar *rules, int32_t rulesLength, UColAttributeValue normalizationMode, UCollationStrength strength, UParseError *parseError, UErrorCode *status)
Produce an UCollator instance according to the rules supplied.
void ucol_forgetUCA(void)
Reset UCA's static pointers.
int32_t ucol_getShortDefinitionString(const UCollator *coll, const char *locale, char *buffer, int32_t capacity, UErrorCode *status)
Get the short definition string for a collator.
UBool ucol_greater(const UCollator *coll, const UChar *source, int32_t sourceLength, const UChar *target, int32_t targetLength)
Determine if one string is greater than another.
void ucol_setAttribute(UCollator *coll, UColAttribute attr, UColAttributeValue value, UErrorCode *status)
Universal attribute setter.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers...
Definition: utypes.h:476
ULocDataLocaleType
Constants for *_getLocale() Allow user to select whether she wants information on requested...
Definition: uloc.h:336
int32_t ucol_getUnsafeSet(const UCollator *coll, USet *unsafe, UErrorCode *status)
Calculates the set of unsafe code points, given a collator.
UEnumeration * ucol_getKeywordValues(const char *keyword, UErrorCode *status)
Given a keyword, create a string enumeration of all values for that keyword that are currently in use...
const char * ucol_getLocaleByType(const UCollator *coll, ULocDataLocaleType type, UErrorCode *status)
gets the locale name of the collator.
int32_t ucol_getFunctionalEquivalent(char *result, int32_t resultCapacity, const char *keyword, const char *locale, UBool *isAvailable, UErrorCode *status)
Return the functionally equivalent locale for the given requested locale, with respect to given keywo...
Characters with the punctuation property.
Definition: ucol.h:181
UColBoundMode
enum that is taken by ucol_getBound API See below for explanation do not change the values assigned t...
Definition: ucol.h:1013
void ucol_setStrength(UCollator *coll, UCollationStrength strength)
Set the collation strength used in a UCollator.
UCollationResult ucol_strcollUTF8(const UCollator *coll, const char *source, int32_t sourceLength, const char *target, int32_t targetLength, UErrorCode *status)
Compare two strings in UTF-8.
struct UCollator UCollator
structure representing a collator object instance
Definition: ucol.h:62
Valid for UCOL_ALTERNATE_HANDLING.
Definition: ucol.h:122
A UParseError struct is used to returned detailed information about parsing errors.
Definition: parseerr.h:56
UCollator * ucol_safeClone(const UCollator *coll, void *stackBuffer, int32_t *pBufferSize, UErrorCode *status)
Thread safe cloning operation.
Basic definitions for ICU, for both C and C++ APIs.
int32_t ucol_getBound(const uint8_t *source, int32_t sourceLength, UColBoundMode boundType, uint32_t noOfLevels, uint8_t *result, int32_t resultLength, UErrorCode *status)
Produce a bound for a given sortkey and a number of levels.
Identical collation strength.
Definition: ucol.h:109
UCollator * ucol_openFromShortString(const char *definition, UBool forceDefaults, UParseError *parseError, UErrorCode *status)
Open a collator defined by a short form string.
Quaternary collation strength.
Definition: ucol.h:107
Attribute for handling variable elements.
Definition: ucol.h:258
An alias for UCOL_NORMALIZATION_MODE attribute.
Definition: ucol.h:291
UColAttributeValue
Enum containing attribute values for controling collation behavior.
Definition: ucol.h:93
UEnumeration * ucol_getKeywords(UErrorCode *status)
Create a string enumerator of all possible keywords that are relevant to collation.
#define U_DRAFT
This is used to declare a function as a draft public ICU C API.
Definition: umachine.h:111
UCollator * ucol_open(const char *loc, UErrorCode *status)
Open a UCollator for comparing strings.
Characters with the space property.
Definition: ucol.h:169
UColRuleOption
Options for retrieving the rule string.
Definition: ucol.h:336
The number of UColAttribute constants.
Definition: ucol.h:330
UCollationStrength ucol_getStrength(const UCollator *coll)
Get the collation strength used in a UCollator.
Primary collation strength.
Definition: ucol.h:98
#define U_STABLE
This is used to declare a function as a stable public ICU C API.
Definition: umachine.h:109
int8_t UBool
The ICU boolean type.
Definition: umachine.h:200
The limit of the reorder codes.
Definition: ucol.h:205
C API: Locale.