#include <ASCStringHelpers.h>
Public Types | |
| typedef ASCCharTString::value_type | charT |
| typedef ASCAdaptatorString::value_type | NoncharT |
Static Public Member Functions | |
| static size_t | _Strlen (const charT *pS) |
| static charT * | _Strcpy (charT *pDest, const charT *pSrc) |
| static charT * | _Strlwr (charT *pS) |
| static charT * | _Strupr (charT *pS) |
| static int | _Stricmp (const charT *pS1, const charT *pS2) |
| static int | _Vsnprintf (charT *buffer, size_t count, const charT *format, std::va_list argptr) |
| static int | _Printf (const charT *format,...) |
| static size_t | _ConvertToCharT (charT *pDest, const NoncharT *pSrc, size_t count) |
Definition at line 144 of file ASCStringHelpers.h.
|
|
charT is an alias to ASCCharTString::value_type, the character type used to represent strings internally.
Definition at line 157 of file ASCStringHelpers.h. |
|
|
NoncharT is an alias to ASCAdaptatorString::value_type, the character type used to represent complementary strings internally.
Definition at line 170 of file ASCStringHelpers.h. |
|
||||||||||||||||
|
Convert a non-native string to a native one.
Definition at line 470 of file ASCStringHelpers.h. References assert. Referenced by ASCString::ASCString(). |
|
||||||||||||
|
Print formated string to standard output.
Definition at line 435 of file ASCStringHelpers.h. References assert. Referenced by ASCString::printf(). |
|
||||||||||||
|
Copy a string
Definition at line 229 of file ASCStringHelpers.h. References assert. Referenced by _Stricmp(), ASCString::toLower(), and ASCString::toUpper(). |
|
||||||||||||
|
Perform a lowercase comparison of strings.
Definition at line 348 of file ASCStringHelpers.h. References _Strcpy(), _Strlen(), _Strlwr(), assert, and stricmp. Referenced by ASCString::compare_ci(). |
|
|
Get the length of a string.
Definition at line 204 of file ASCStringHelpers.h. References assert. Referenced by _Stricmp(). |
|
|
Convert to lowercase.
Definition at line 253 of file ASCStringHelpers.h. References assert. Referenced by _Stricmp(), and ASCString::toLower(). |
|
|
Convert to uppercase.
Definition at line 297 of file ASCStringHelpers.h. References assert, and strupr(). Referenced by ASCString::toUpper(). |
|
||||||||||||||||||||
|
Write formated output.
Definition at line 404 of file ASCStringHelpers.h. References assert. Referenced by ASCString::vaformat(). |
1.4.2