mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
22 lines
403 B
C
22 lines
403 B
C
|
#ifndef CHARACTER_H
|
||
|
#define CHARACTER_H
|
||
|
|
||
|
/**
|
||
|
* @brief Append a character to a string, assuming string points to an array
|
||
|
* with enough space.
|
||
|
*
|
||
|
* @param string
|
||
|
* @param character
|
||
|
*/
|
||
|
void character_append(char* string, char character);
|
||
|
|
||
|
/**
|
||
|
* @brief Converts the character to uppercase.
|
||
|
*
|
||
|
* @param character
|
||
|
* @return const char
|
||
|
*/
|
||
|
const char character_to_upper(const char character);
|
||
|
|
||
|
#endif
|