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