diff --git a/src/ui.c b/src/ui.c index 8f7bdc6..0fc0a83 100644 --- a/src/ui.c +++ b/src/ui.c @@ -12,25 +12,6 @@ #include "iCal.h" #include "db.h" -typedef struct task { - char name; - int priority; - struct task *nextTask; -}; - -typedef struct task task_1; -typedef struct task* task_ptr; -task_ptr firsttask = NULL; - -typedef struct time { - int time; - struct time *nextTime; -}; - -typedef struct time time_1; -typedef struct time* time_ptr; -time_ptr firsttime = NULL; - void dump_buffer(FILE *fp){ int ch; while((ch = fgetc(fp)) != EOF && ch != '\n');