ICU-2474 Fix linkage problem

X-SVN-Rev: 10267
This commit is contained in:
George Rhoten 2002-11-15 17:36:49 +00:00
parent e0beb5b008
commit 5c279e1290

View File

@ -214,6 +214,13 @@ isAcceptable(void * /* context */,
}
}
static UBool U_CALLCONV
_enumPropertyStartsRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) {
/* add the start code point to the USet */
uset_add((USet *)context, start);
return TRUE;
}
U_CDECL_END
static int8_t
@ -836,13 +843,6 @@ unorm_isNFSkippable(UChar32 c, UNormalizationMode mode) {
/* } else { FCC, test fcd<=1 instead of the above } */
}
static UBool U_CALLCONV
_enumPropertyStartsRange(const void *context, UChar32 start, UChar32 limit, uint32_t value) {
/* add the start code point to the USet */
uset_add((USet *)context, start);
return TRUE;
}
U_CAPI void U_EXPORT2
unorm_addPropertyStarts(USet *set) {
UErrorCode errorCode;