![]() |
SyterKit 0.4.0.x
SyterKit is a bare-metal framework
|

Functions | |
| int | isalpha (int c) |
| Check if the given character is alphabetic. | |
| int | isascii (int c) |
| Check if the given character is a valid ASCII character. | |
| int | isblank (int c) |
| Check if the given character is a blank space. | |
| int | isalnum (int c) |
| Check if the given character is alphanumeric. | |
| int | iscntrl (int c) |
| Check if the given character is a control character. | |
| int | isdigit (int c) |
| Check if the given character is a digit. | |
| int | isgraph (int c) |
| Check if the given character is printable and not a space. | |
| int | islower (int c) |
| Check if the given character is a lowercase alphabetic character. | |
| int | isprint (int c) |
| Check if the given character is a printable character (including spaces). | |
| int | ispunct (int c) |
| Check if the given character is a punctuation character. | |
| int | isspace (int c) |
| Check if the given character is a whitespace character. | |
| int | isupper (int c) |
| Check if the given character is an uppercase alphabetic character. | |
| int | isxdigit (int c) |
| Check if the given character is a hexadecimal digit. | |
| int | toascii (int c) |
| Convert the given character to its ASCII equivalent. | |
| int | tolower (int c) |
| Convert the given character to lowercase. | |
| int | toupper (int c) |
| Convert the given character to uppercase. | |
| int isalnum | ( | int | c | ) |
Check if the given character is alphanumeric.
| c | The character to check. |
| int isalpha | ( | int | c | ) |
Check if the given character is alphabetic.
| c | The character to check. |
| int isascii | ( | int | c | ) |
Check if the given character is a valid ASCII character.
| c | The character to check. |
| int isblank | ( | int | c | ) |
Check if the given character is a blank space.
| c | The character to check. |
| int iscntrl | ( | int | c | ) |
Check if the given character is a control character.
| c | The character to check. |
| int isdigit | ( | int | c | ) |
Check if the given character is a digit.
| c | The character to check. |
| int isgraph | ( | int | c | ) |
Check if the given character is printable and not a space.
| c | The character to check. |
| int islower | ( | int | c | ) |
Check if the given character is a lowercase alphabetic character.
| c | The character to check. |
| int isprint | ( | int | c | ) |
Check if the given character is a printable character (including spaces).
| c | The character to check. |
| int ispunct | ( | int | c | ) |
Check if the given character is a punctuation character.
| c | The character to check. |
| int isspace | ( | int | c | ) |
Check if the given character is a whitespace character.
| c | The character to check. |
| int isupper | ( | int | c | ) |
Check if the given character is an uppercase alphabetic character.
| c | The character to check. |
| int isxdigit | ( | int | c | ) |
Check if the given character is a hexadecimal digit.
| c | The character to check. |
| int toascii | ( | int | c | ) |
Convert the given character to its ASCII equivalent.
| c | The character to convert. |
| int tolower | ( | int | c | ) |
Convert the given character to lowercase.
| c | The character to convert. |
| int toupper | ( | int | c | ) |
Convert the given character to uppercase.
| c | The character to convert. |