@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* getUserInput() {
char *input = NULL;
size_t size = 0;
printf("Ihre Eingabe: ");
getline(&input, &size, stdin);
return input;
}
@ -0,0 +1,6 @@
#ifndef INPUT
#define INPUT
char* getUserInput();
#endif // INPUT