minor changes
parent
06a81ad27e
commit
0a29388cb5
19
src/ui.c
19
src/ui.c
|
@ -12,25 +12,6 @@
|
||||||
#include "iCal.h"
|
#include "iCal.h"
|
||||||
#include "db.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){
|
void dump_buffer(FILE *fp){
|
||||||
int ch;
|
int ch;
|
||||||
while((ch = fgetc(fp)) != EOF && ch != '\n');
|
while((ch = fgetc(fp)) != EOF && ch != '\n');
|
||||||
|
|
Loading…
Reference in New Issue