Compare commits

..

No commits in common. "ca261158c6f64f80565547cd4cc8a7794828f8c3" and "a925ca1678d9ad620579afb6292019ad3d424d6c" have entirely different histories.

1 changed files with 6 additions and 6 deletions

View File

@ -47,24 +47,24 @@ int main(void) {
switch (choice) { switch (choice) {
case 1: case 1:
printf(" Geben sie das gewuenschte Fach ein: \n"); printf(" Geben sie das gewünschte Fach ein: \n");
time_t now = time(NULL); time_t now = time(NULL);
struct tm lc; struct tm lc;
localtime_r(&now, &lc); localtime_r(&now, &lc);
if (fscanf(stdin, "%s", taskname) <= 0) { if (fscanf(stdin, "%s", taskname) <= 0) {
printf("Ungueltige Eingabe für den Namen.\n"); printf("Ungültige Eingabe für den Namen.\n");
return -1; return -1;
} }
printf(" Wie viel Zeit bleibt ihnen (tage bis deadline):\n"); printf(" Wie viel Zeit bleibt ihnen (tage bis deadline):\n");
if (scanf("%d", &taskdeadline_date) != 1) { if (scanf("%d", &taskdeadline_date) != 1) {
printf("Ungueltige Eingabe.\n"); printf("Ungültige Eingabe.\n");
return -1; return -1;
} }
printf(" Gib die Prioritaet des Faches an: \n"); printf(" Gib die Priorität des Faches an: \n");
if (scanf("%d", &taskpriority) != 1) { if (scanf("%d", &taskpriority) != 1) {
printf("Ungueltige Eingabe.\n"); printf("Ungültige Eingabe.\n");
return -1; return -1;
} }
@ -87,7 +87,7 @@ int main(void) {
break; break;
case 2: case 2:
printf( printf(
"Geben Sie die zur verfuegung stehende Zeit für die Faecher an: \n"); "Geben Sie die zur verfuegung stehende Zeit für die Fächer an: \n");
scanf("%d", &taskspare); scanf("%d", &taskspare);
// if list exists use it to generate plan // if list exists use it to generate plan
if (listT != NULL) { if (listT != NULL) {