|
Compounds |
| class | UMString |
| | String class for handling multibyte and unicode strings. More...
|
Typedefs |
| typedef unsigned int | UINT |
Enumerations |
| enum | CHARTYPE {
HiraChar,
KataChar,
KanjiChar,
LatinChar,
LatinPunct,
JapPunct,
UnknownChar
} |
| | defines the kinds of characters in Japanese More...
|
Functions |
| bool | IsASCII (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is an ascii-character.
|
| bool | IsWideChar (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is an wide-character.
|
| bool | IsHira (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is a hiragana.
|
| bool | IsKata (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is a katakana.
|
| bool | IsKanji (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is a kanji.
|
| bool | IsKana (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is a kana.
|
| bool | IsLatinChar (const wchar_t tmp_uc_char) |
| | Checks if a given wchar_t is a latin character ([a-z,A-Z]).
|
| bool | IsLatinPunct (const wchar_t tmp_uc_char) |
| bool | IsJapPunct (const wchar_t tmp_uc_char) |
| bool | IsNumber (const wchar_t tmp_uc_char) |
| const CHARTYPE | IsWhat (const wchar_t tmp_uc_char) |
| | Returns the type of character.
|
| string | GetEUCFromSJIS (const string &SJISString) |
| | Coverts a string from Shift-JIS to EUC-jp.
|
| string | GetSJISFromEUC (const string &EUCString) |
| | Converts a string from EUC-jp to Shift-JIS.
|