mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
17 lines
186 B
C
17 lines
186 B
C
#ifndef __INPUT__
|
|
#define __INPUT__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "character.h"
|
|
|
|
/**
|
|
* @brief Read a line from stdin.
|
|
*
|
|
* @return char*
|
|
*/
|
|
char* input();
|
|
|
|
#endif
|