ui.c
Jürgen Büchel 2024-12-13 22:32:51 +01:00
parent 749c0400fa
commit 7da1172d3a
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "ui.h" #include "ui.h"
typedef struct task_elements { typedef struct task {
char name; char name;
int priority; int priority;
struct task *nextTask; struct task *nextTask;
@ -16,7 +16,7 @@ typedef struct task task_1;
typedef struct task* task_ptr; typedef struct task* task_ptr;
task_ptr firsttask = NULL; task_ptr firsttask = NULL;
typedef struct time_elements { typedef struct time {
int time; int time;
struct time *nextTime; struct time *nextTime;
}; };