MentOS
0.8.0
The Mentoring Operating System
|
Functions related to character handling. More...
Macros | |
#define | OFFSET 32 |
Distance from a uppercase character to the correspondent lowercase in ASCII. | |
Functions | |
int | isdigit (int c) |
Check if the given value is a digit. More... | |
int | isalpha (int c) |
Check if the given value is a letter. More... | |
int | iscntrl (int c) |
Check if the given value is a control character. More... | |
int | isalnum (int c) |
Check if the given value is either a letter or a digit. More... | |
int | isxdigit (int c) |
Check if the given value is an hexadecimal digit. More... | |
int | islower (int c) |
Check if the given value is a lower case letter. More... | |
int | isupper (int c) |
Check if the given value is an upper case letter. More... | |
int | tolower (int c) |
Transforms the given value into a lower case letter. More... | |
int | toupper (int c) |
Transforms the given value into an upper case letter. More... | |
int | isspace (int c) |
Check if the given value is a whitespace. More... | |
Functions related to character handling.
int isalnum | ( | int | c | ) |
Check if the given value is either a letter or a digit.
c | The input character. |
int isalpha | ( | int | c | ) |
Check if the given value is a letter.
c | The input character. |
int iscntrl | ( | int | c | ) |
Check if the given value is a control character.
c | The input character. |
int isdigit | ( | int | c | ) |
Check if the given value is a digit.
c | The input character. |
int islower | ( | int | c | ) |
Check if the given value is a lower case letter.
c | The input character. |
int isspace | ( | int | c | ) |
Check if the given value is a whitespace.
c | The input character. |
int isupper | ( | int | c | ) |
Check if the given value is an upper case letter.
c | The input character. |
int isxdigit | ( | int | c | ) |
Check if the given value is an hexadecimal digit.
c | The input character. |
int tolower | ( | int | c | ) |
Transforms the given value into a lower case letter.
c | The input letter. |
int toupper | ( | int | c | ) |
Transforms the given value into an upper case letter.
c | The input letter. |