Go to the source code of this file.
Compounds | |
union | ufmt_args |
Typedefs | |
typedef union ufmt_args | ufmt_args |
Enumerations | |
enum | { ufmt_count, ufmt_int, ufmt_char, ufmt_wchar, ufmt_string, ufmt_wstring, ufmt_pointer, ufmt_float, ufmt_double, ufmt_date, ufmt_uchar, ufmt_ustring, ufmt_last } |
Enum representing the possible argument types for uprintf/uscanf. More... | |
Functions | |
int | ufmt_digitvalue (UChar c) |
Convert a UChar in a some radix to an integer value. More... | |
UBool | ufmt_isdigit (UChar c, int32_t radix) |
Determine if a UChar is a digit for a specified radix. More... | |
void | ufmt_ltou (UChar *buffer, int32_t *len, long value, int32_t radix, UBool uselower, int32_t minDigits) |
Convert a long to a UChar* in a specified radix. More... | |
long | ufmt_utol (const UChar *buffer, int32_t *len, int32_t radix) |
Convert a UChar* in a specified radix to a long. More... | |
UBool | ufmt_isws (UChar c) |
Determine if a UChar is a whitespace character. More... | |
UChar* | ufmt_defaultCPToUnicode (const char *s, int32_t len) |
Convert a string from the default codepage to Unicode. More... | |
char* | ufmt_unicodeToDefaultCP (const UChar *s, int32_t len) |
Convert a string from the Unicode to the default codepage. More... |
|
Definition at line 56 of file ufmt_cmn.h. |
|
Enum representing the possible argument types for uprintf/uscanf.
Definition at line 28 of file ufmt_cmn.h. |
|
Convert a string from the default codepage to Unicode.
|
|
Convert a UChar in a some radix to an integer value.
|
|
Determine if a UChar is a digit for a specified radix.
|
|
Determine if a UChar is a whitespace character.
|
|
Convert a long to a UChar* in a specified radix.
|
|
Convert a string from the Unicode to the default codepage.
|
|
Convert a UChar* in a specified radix to a long.
|