C Workshop
|
Functions | |
void | InputLoop (void) |
Function that receives character input from the user and prints it. More... | |
char | ReadCharacter () |
Read a character from the user. More... | |
void | PrintCharacter (char input) |
Print a character to the user. More... | |
bool | IsQ (char input) |
Check if a character is a 'Q' or 'q'. More... | |
void InputLoop | ( | ) |
Function that receives character input from the user and prints it.
Function that receives character input from the user and prints it in uppercase.
The function terminates when the input is 'Q' or 'q'
bool IsQ | ( | char | input | ) |
Check if a character is a 'Q' or 'q'.
input | Character to check |
void PrintCharacter | ( | char | input | ) |
Print a character to the user.
input | The character to print |
char ReadCharacter | ( | ) |
Read a character from the user.