ICU-338 minor 'glitches' found in OS/2 port
X-SVN-Rev: 987
This commit is contained in:
parent
2b3e3d4072
commit
6074e7bad6
@ -47,8 +47,6 @@ static void createDirTables(void);
|
||||
|
||||
char* _ucdVersion=NULL;
|
||||
|
||||
const UChar MIN_VALUE = 0x0000;
|
||||
const UChar MAX_VALUE = 0xffff;
|
||||
static CompactByteArray *tables;
|
||||
static CompactShortArray *ulTables;
|
||||
static CompactByteArray *dirTables;
|
||||
|
@ -161,7 +161,7 @@ static int16_t _findIndex(const char* list, int32_t listLength, const char* key)
|
||||
static const char* _findCharSeparator(const char* string);
|
||||
|
||||
/*Lazy evaluated the list of installed locales*/
|
||||
static void _lazyEvaluate_installedLocales();
|
||||
static void _lazyEvaluate_installedLocales(void);
|
||||
|
||||
/*returns TRUE if a is an ID separator FALSE otherwise*/
|
||||
#define _isIDSeparator(a) (a == '_' || a == '-')
|
||||
|
@ -45,18 +45,15 @@
|
||||
* Constants.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The minimum value a UChar can have. The lowest value a
|
||||
* UChar can have is 0x0000.
|
||||
*/
|
||||
static UChar UCHAR_MIN_VALUE;
|
||||
/**
|
||||
* The maximum value a UChar can have. The greatest value a
|
||||
* UChar can have is 0xffff.
|
||||
* @draft
|
||||
*/
|
||||
/** The lowest Unicode code point value. Code points are non-negative. */
|
||||
#define UCHAR_MIN_VALUE 0
|
||||
|
||||
static UChar UCHAR_MAX_VALUE;
|
||||
/**
|
||||
* The highest Unicode code point value (scalar value) according to
|
||||
* The Unicode Standard. This is a 21-bit value (20.1 bits, rounded up).
|
||||
* For a single character, UChar32 is a simple type that can hold any code point value.
|
||||
*/
|
||||
#define UCHAR_MAX_VALUE 0x10ffff
|
||||
|
||||
/**
|
||||
* Data for enumerated Unicode general category types
|
||||
|
@ -26,7 +26,7 @@
|
||||
static UConverter *fgDefaultConverter = NULL;
|
||||
|
||||
static UConverter*
|
||||
getDefaultConverter();
|
||||
getDefaultConverter(void);
|
||||
|
||||
static void
|
||||
releaseDefaultConverter(UConverter *converter);
|
||||
|
Loading…
Reference in New Issue
Block a user