#include <cwchar>
Defines | |
#define | SWIchar_isspace(x) |
Tests whether a character is a whitespace character. | |
#define | SWIchar_iswspace(x) |
Tests whether a wide character is a whitespace character. | |
#define | SWIchar_isdigit(x) ((x) >= '0' && (x) <= '9') |
Tests whether a character is a digit. | |
#define | SWIchar_iswdigit(x) ((x) >= L'0' && (x) <= L'9') |
Tests whether a wide character is a digit. | |
#define | SWIchar_isalpha(x) |
Tests whether a character is alphanumeric. | |
#define | SWIchar_iswalpha(x) |
Tests whether a wide character is alphanumeric. | |
#define | SWIchar_MAXSTRLEN 64 |
Enumerations | |
enum | SWIcharResult { SWIchar_CONVERSION_LOSS = -6, SWIchar_BUFFER_OVERFLOW = -5, SWIchar_OUT_OF_MEMORY = -4, SWIchar_INVALID_INPUT = -3, SWIchar_FAIL = -2, SWIchar_ERROR = -1, SWIchar_SUCCESS = 0 } |
Functions | |
const wchar_t * | SWIcharReturnCodeToWcs (SWIcharResult rc) |