#include "ace/os_include/os_ctype.h"
#include "ace/os_include/os_wctype.h"
Include dependency graph for OS_NS_ctype.inl:
This graph shows which files directly or indirectly include this file:
Functions | |
ACE_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE int | ACE_OS::ace_isalnum (ACE_TCHAR c) |
Returns true if the character is an alphanumeric character. | |
ACE_INLINE int | ACE_OS::ace_isalpha (ACE_TCHAR c) |
Returns true if the character is an alphabetic character. | |
ACE_INLINE int | ACE_OS::ace_iscntrl (ACE_TCHAR c) |
Returns true if the character is a control character. | |
ACE_INLINE int | ACE_OS::ace_isdigit (ACE_TCHAR c) |
Returns true if the character is a decimal-digit character. | |
ACE_INLINE int | ACE_OS::ace_isgraph (ACE_TCHAR c) |
Returns true if the character is a printable character other than a space. | |
ACE_INLINE int | ACE_OS::ace_islower (ACE_TCHAR c) |
Returns true if the character is a lowercase character. | |
ACE_INLINE int | ACE_OS::ace_isprint (ACE_TCHAR c) |
Returns true if the character is a printable character. | |
ACE_INLINE int | ACE_OS::ace_ispunct (ACE_TCHAR c) |
Returns true if the character is a punctuation character. | |
ACE_INLINE int | ACE_OS::ace_isspace (ACE_TCHAR c) |
Returns true if the character is a space character. | |
ACE_INLINE int | ACE_OS::ace_isupper (ACE_TCHAR c) |
Returns true if the character is an uppercase character. | |
ACE_INLINE int | ACE_OS::ace_isxdigit (ACE_TCHAR c) |
Returns true if the character is a hexadecimal-digit character. | |
ACE_INLINE int | ACE_OS::ace_tolower (int c) |
Converts a character to lower case (char version). | |
ACE_INLINE wint_t | ACE_OS::ace_towlower (wint_t c) |
Converts a character to lower case (wchar_t version). | |
ACE_INLINE int | ACE_OS::ace_toupper (int c) |
Converts a character to upper case (char version). | |
ACE_INLINE wint_t | ACE_OS::ace_towupper (wint_t c) |
Converts a character to upper case (wchar_t version). |