|
|
virtual bool | IC3DCharEncodingTransformer::C3DToStd (const c3d::string_t &from, std::string &to)=0 |
| | Transform string from wchar_t* to char*.
|
| |
|
virtual bool | IC3DCharEncodingTransformer::StdToC3D (const std::string &from, c3d::string_t &to)=0 |
| | Transform string from char* в wchar_t*.
|
| |
|
virtual bool | C3DCharEncodingTransformerLocale::C3DToStd (const c3d::string_t &from, std::string &to) |
| | Transform C3D string to the STD one.
|
| |
|
virtual bool | C3DCharEncodingTransformerLocale::StdToC3D (const std::string &from, c3d::string_t &to) |
| | Transform STD string to the C3D one.
|
| |
|
bool | IC3DCharEncodingTransformerStep::C3DToStd (const c3d::string_t &from, std::string &to) override |
| | Transform C3D string to the STD one.
|
| |
|
bool | IC3DCharEncodingTransformerStep::StdToC3D (const std::string &from, c3d::string_t &to) override |
| | Transform STD string to the C3D one.
|
| |
|
bool | IC3DCharEncodingTransformerUTF8::C3DToStd (const c3d::string_t &from, std::string &to) override |
| | Transform C3D string to the STD one.
|
| |
|
bool | IC3DCharEncodingTransformerUTF8::StdToC3D (const std::string &from, c3d::string_t &to) override |
| | Transform STD string to the C3D one.
|
| |
|
bool | IC3DCharEncodingTransformerWindows1251::C3DToStd (const c3d::string_t &from, std::string &to) override |
| | Transform C3D string to the STD one.
|
| |
|
bool | IC3DCharEncodingTransformerWindows1251::StdToC3D (const std::string &from, c3d::string_t &to) override |
| | Transform STD string to the C3D one.
|
| |
|
size_t | c3d::size_of (string_t s) |
| | Memory allocated by string.
|
| |
|
std::wstring | c3d::StdToWString (const std::string &s) |
| | String transformation from multibyte to wide-char.
|
| |
|
std::string | c3d::WToStdString (const std::wstring &s) |
| | String transformation from wide-char to multibyte.
|
| |
|
string_t | c3d::ToC3Dstring (const std::string &s) |
| | String transformation to the C3D form.
|
| |
|
std::string | c3d::ToSTDstring (const string_t &s) |
| | String transformation to the standard form.
|
| |
|
string_t | c3d::ToC3Dstring (const std::wstring &s) |
| | String transformation to the C3D form.
|
| |
|
path_string | c3d::WToPathstring (const std::wstring &s) |
| | String transformation to the standard form.
|
| |
|
std::wstring | c3d::ToWstring (const string_t &s) |
| | String transformation to the standard form.
|
| |
|
std::string | c3d::PathToSTDstring (const path_string &s) |
| | String transformation to the standard form.
|
| |
|
string_t | c3d::PathToC3Dstring (const path_string &s) |
| | String transformation to the standard form.
|
| |
|
path_string | c3d::StdToPathstring (const std::string &s) |
| | String transformation to the standard form.
|
| |
|
path_string | c3d::C3DToPathstring (const string_t &s) |
| | String transformation to the standard form.
|
| |
|
void | c3d::ToLower (::std::string &v) |
| | convert symbols to lower case.
|
| |
|
void | c3d::ToLower (::std::wstring &v) |
| | convert symbols to lower case.
|
| |
| char * | strnewdup (const char *str, size_t minLen=0) |
| | Return a CHAR-string. More...
|
| |
| wchar_t * | wcsnewdup (const wchar_t *str, size_t minLen=0) |
| | Duplicate a WCHAR-string. More...
|
| |
| wchar_t * | mbsnewwcs (const char *str) |
| | Convert CHAR to WCHAR. More...
|
| |
| char * | wcsnewmbs (const wchar_t *str) |
| | Convert WCHAR-string to CHAR-string. More...
|
| |
| uint32 * | Utf16ToUcs4 (uint16 *source, size_t *calculateCountSymbol=nullptr) |
| | Convert from UTF-16 to UCS-4 string. More...
|
| |
| uint16 * | Ucs4ToUtf16 (uint32 *source, size_t *calculateCountSymbol=nullptr) |
| | Convert from UCS-4 to UTF-16 string. More...
|
| |