GBDK 2020 Docs
4.3.0
API Documentation for GBDK 2020
|
Go to the source code of this file.
Functions | |
bool | isalpha (char c) |
bool | isupper (char c) |
bool | islower (char c) |
bool | isdigit (char c) |
bool | isspace (char c) |
char | toupper (char c) |
char | tolower (char c) |
Character type functions.
bool isalpha | ( | char | c | ) |
Returns TRUE if the character c is a letter (a-z, A-Z), otherwise FALSE
c | Character to test |
bool isupper | ( | char | c | ) |
Returns TRUE if the character c is an uppercase letter (A-Z), otherwise FALSE
c | Character to test |
bool islower | ( | char | c | ) |
Returns TRUE if the character c is a lowercase letter (a-z), otherwise FALSE
c | Character to test |
bool isdigit | ( | char | c | ) |
Returns TRUE if the character c is a digit (0-9), otherwise FALSE
c | Character to test |
bool isspace | ( | char | c | ) |
Returns TRUE if the character c is a space (' '), tab (\t), or newline (\n) character, otherwise FALSE
c | Character to test |
char toupper | ( | char | c | ) |
Returns uppercase version of character c if it is a letter (a-z), otherwise it returns the input value unchanged.
c | Character to test |
char tolower | ( | char | c | ) |
Returns lowercase version of character c if it is a letter (A-Z), otherwise it returns the input value unchanged.
c | Character to test |