mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
11 lines
219 B
C
11 lines
219 B
C
#ifndef APP_UTILS_H
|
|
#define APP_UTILS_H
|
|
|
|
/* Returns a pointer to an input text, allocated by the functions (it is thus
|
|
* the caller's role to free it). */
|
|
char* get_text();
|
|
|
|
void clear_screen();
|
|
|
|
#endif // APP_UTILS_H
|