HPGCC3 Documentation 3.0 R003
|
The C type definitions. More...
Go to the source code of this file.
Defines | |
#define | _islower(c) ('a' <= (c) && (c) <= 'z') |
#define | _isupper(c) ('A' <= (c) && (c) <= 'Z') |
#define | _isdigit(c) ('0' <= (c) && (c) <= '9') |
#define | _isalpha(c) (_islower(c) || _isupper(c)) |
#define | _toupper(c) (_islower((c)) ? ((c)-32) : (c)) |
#define | _tolower(c) (_isupper((c)) ? ((c)+32) : (c)) |
Functions | |
int | islower (int c) |
int | isupper (int c) |
int | isdigit (int c) |
int | isalpha (int c) |
int | toupper (int c) |
int | tolower (int c) |
int | isalnum (int c) |
The C type definitions.
Definition in file ctype.h.
int isalnum | ( | int | c | ) |
int isalpha | ( | int | c | ) |
int isdigit | ( | int | c | ) |
int islower | ( | int | c | ) |
int isupper | ( | int | c | ) |
int tolower | ( | int | c | ) |
int toupper | ( | int | c | ) |