ICU-2421 Fix for z/OS

X-SVN-Rev: 15452
This commit is contained in:
George Rhoten 2004-05-21 17:14:06 +00:00
parent 980f17b643
commit df8374da27

View File

@ -610,11 +610,13 @@ U_NAMESPACE_END
// Call-back function for u_unescapeAt(), used when we encounter
// \uxxxx or \Uxxxxxxxxx escapes in the replacement text.
//
U_CDECL_BEGIN
static UChar U_CALLCONV
unescape_charAt(int32_t offset, void *context) {
UChar c16 = ((UChar *)context)[offset];
return c16;
}
U_CDECL_END
static const UChar BACKSLASH = 0x5c;