diff --git a/src/ui.c b/src/ui.c index d071f07..0d5c4d1 100644 --- a/src/ui.c +++ b/src/ui.c @@ -34,7 +34,6 @@ int main(void) list = llistAppend(list, task); // Rückgabewert verwenden } - int choice = 0, i = 0; do { @@ -48,12 +47,9 @@ int main(void) printf("Falsche Eingabe\n");}; choice = 0; - while(( choice < 1 || choice > 5)) - { - switch (choice) - { - case 1: - { + while(( choice < 1 || choice > 5)){ + switch (choice){ + case 1:{ printf(" Geben sie das gewünschte Fach ein: \n"); if (scanf("%255s", taskname) != 1) { printf("Ungültige Eingabe für den Namen.\n"); @@ -86,12 +82,10 @@ int main(void) scanf("%c", &taskspare); break; - case 3: if( task == NULL) - { + case 3: if( task == NULL){ printf("Die Liste ist leer"); } - else - { + else{ llist *iterator = list; while (iterator != NULL) { Task *currentTask = (Task *)(iterator->data); // Cast zu Task @@ -100,19 +94,12 @@ int main(void) iterator = iterator->next; // Gehe zum nächsten Listenelement } } - break; // case 4: iCAl();break; } - } } - }while (choice !=5); { return EXIT_SUCCESS; } -} - - - - +} \ No newline at end of file