From 749c0400fa579faf37f6bfcd75d3d5991cf53cf8 Mon Sep 17 00:00:00 2001 From: juergen Date: Fri, 13 Dec 2024 22:32:04 +0100 Subject: [PATCH] new --- .idea/.gitignore | 8 + .idea/editor.xml | 483 +++++++++++++++++++++++++++++++++++++++++++++++ .idea/misc.xml | 13 ++ .idea/vcs.xml | 6 + src/ui.c | 2 +- src/ui.h | 2 +- 6 files changed, 512 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/editor.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/editor.xml b/.idea/editor.xml new file mode 100644 index 0000000..b0d69ef --- /dev/null +++ b/.idea/editor.xml @@ -0,0 +1,483 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..bedf918 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/ui.c b/src/ui.c index 38dac4d..eeb2d9c 100644 --- a/src/ui.c +++ b/src/ui.c @@ -91,7 +91,7 @@ void newTime(void) if (newtime == NULL){ printf("Die Liste ist leer?!\n"); } - printf(" Neue Zeit eigneben: "); + printf(" Neue Zeit eingeben: "); if(scanf("%d",&newTime)!=1) { dump_buffer(stdin); diff --git a/src/ui.h b/src/ui.h index 750e9bf..3eba956 100644 --- a/src/ui.h +++ b/src/ui.h @@ -6,7 +6,7 @@ typedef struct task_elements{ char name; int priority; }; -typedef struct time{ +typedef struct time_e{ int time; };