mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
feat(solutions): add caesar-cipher/c/function
This commit is contained in:
13
challenges/caesar-cipher/solutions/c/function/character.h
Normal file
13
challenges/caesar-cipher/solutions/c/function/character.h
Normal file
@ -0,0 +1,13 @@
|
||||
#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);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user