1
1
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:
Divlo
2021-10-07 14:51:19 +02:00
parent 3b153a9f1f
commit 108642e57f
8 changed files with 138 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#ifndef INPUT_H
#define INPUT_H
/**
* @brief Read a line from stdin.
*
* @return char*
*/
char* input();
#endif