implemented: #define localtime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)
#define ctime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)bugfix
parent
24150229d4
commit
52718c972e
12
src/ui.c
12
src/ui.c
|
@ -47,24 +47,24 @@ int main(void) {
|
||||||
|
|
||||||
switch (choice) {
|
switch (choice) {
|
||||||
case 1:
|
case 1:
|
||||||
printf(" Geben sie das gewünschte Fach ein: \n");
|
printf(" Geben sie das gewuenschte 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("Ungültige Eingabe für den Namen.\n");
|
printf("Ungueltige 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("Ungültige Eingabe.\n");
|
printf("Ungueltige Eingabe.\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf(" Gib die Priorität des Faches an: \n");
|
printf(" Gib die Prioritaet des Faches an: \n");
|
||||||
if (scanf("%d", &taskpriority) != 1) {
|
if (scanf("%d", &taskpriority) != 1) {
|
||||||
printf("Ungültige Eingabe.\n");
|
printf("Ungueltige 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 Fächer an: \n");
|
"Geben Sie die zur verfuegung stehende Zeit für die Faecher 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) {
|
||||||
|
|
Loading…
Reference in New Issue