Go to the source code of this file.
|
| int | isalnum (int c) |
| | Check if the given character is alphanumeric.
|
| |
| 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 | 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.
|
| |
◆ isalnum()
Check if the given character is alphanumeric.
- Parameters
-
- Returns
- Non-zero value if the character is alphanumeric, zero otherwise.
◆ isalpha()
Check if the given character is alphabetic.
- Parameters
-
- Returns
- Non-zero value if the character is alphabetic, zero otherwise.
◆ isascii()
Check if the given character is a valid ASCII character.
- Parameters
-
- Returns
- Non-zero value if the character is a valid ASCII character, zero otherwise.
◆ isblank()
Check if the given character is a blank space.
- Parameters
-
- Returns
- Non-zero value if the character is a blank space, zero otherwise.
◆ iscntrl()
Check if the given character is a control character.
- Parameters
-
- Returns
- Non-zero value if the character is a control character, zero otherwise.
◆ isdigit()
Check if the given character is a digit.
- Parameters
-
- Returns
- Non-zero value if the character is a digit, zero otherwise.
◆ isgraph()
Check if the given character is printable and not a space.
- Parameters
-
- Returns
- Non-zero value if the character is printable and not a space, zero otherwise.
◆ islower()
Check if the given character is a lowercase alphabetic character.
- Parameters
-
- Returns
- Non-zero value if the character is a lowercase alphabetic character, zero otherwise.
◆ isprint()
Check if the given character is a printable character (including spaces).
- Parameters
-
- Returns
- Non-zero value if the character is a printable character, zero otherwise.
◆ ispunct()
Check if the given character is a punctuation character.
- Parameters
-
- Returns
- Non-zero value if the character is a punctuation character, zero otherwise.
◆ isspace()
Check if the given character is a whitespace character.
- Parameters
-
- Returns
- Non-zero value if the character is a whitespace character, zero otherwise.
◆ isupper()
Check if the given character is an uppercase alphabetic character.
- Parameters
-
- Returns
- Non-zero value if the character is an uppercase alphabetic character, zero otherwise.
◆ isxdigit()
Check if the given character is a hexadecimal digit.
- Parameters
-
- Returns
- Non-zero value if the character is a hexadecimal digit, zero otherwise.
◆ toascii()
Convert the given character to its ASCII equivalent.
- Parameters
-
| c | The character to convert. |
- Returns
- The ASCII value of the character.
◆ tolower()
Convert the given character to lowercase.
- Parameters
-
| c | The character to convert. |
- Returns
- The lowercase equivalent of the character.
◆ toupper()
Convert the given character to uppercase.
- Parameters
-
| c | The character to convert. |
- Returns
- The uppercase equivalent of the character.