Implement user input handling and refine drawing logic

This commit is contained in:
2026-06-07 17:25:33 +02:00
parent 73bb260fec
commit 8121288e57
5 changed files with 97 additions and 13 deletions

8
draw.h
View File

@@ -41,6 +41,14 @@ void drawTitle(char* title);
*/
void drawEmptyLines(int amount);
/**
* @brief gets Userinput and puts it in the input var
*
* @param[out] output
* @param[in] displayText
*/
void getUserInput(char* output, char* displayText);
char** splitByNewLine(char *str, int *lineCount);
#endif