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