2021-10-13 21:43:45 +02:00
|
|
|
#ifndef __INPUT__
|
|
|
|
#define __INPUT__
|
|
|
|
|
2023-08-10 11:13:06 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "character.h"
|
|
|
|
|
2021-10-13 21:43:45 +02:00
|
|
|
/**
|
|
|
|
* @brief Read a line from stdin.
|
|
|
|
*
|
|
|
|
* @return char*
|
|
|
|
*/
|
|
|
|
char* input();
|
|
|
|
|
|
|
|
#endif
|