mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
Also removes ion_getchar in favor of ion_get_event. Change-Id: Id95ea509315185da24fd2a3fe90969da0bd19cfc
9 lines
209 B
C
9 lines
209 B
C
#ifndef APP_TEXTINPUT_H
|
|
#define APP_TEXTINPUT_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();
|
|
|
|
#endif // APP_TEXTINPUT_H
|