minor changes

ui.c
Jürgen Büchel 2024-12-14 10:37:22 +01:00
parent 06a81ad27e
commit 0a29388cb5
1 changed files with 0 additions and 19 deletions

View File

@ -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');