Compare commits

..

No commits in common. "8f672ff5b0ca7bc51e492e5d6d5073124b319250" and "7b266086fd20d833c61a5a5d53e7ada951b97c17" have entirely different histories.

2 changed files with 6 additions and 9 deletions

View File

@ -1,6 +1,5 @@
#compiler flags
CFLAGS=-Wall -Wextra -g
CFLAGS=-Wall -Wetra -g
#files

View File

@ -7,22 +7,20 @@ typedef struct Subject{
char * name;
time_t * created;
time_t * deadline;
int priority;
} Subject;
typedef struct Event {
Subject subject;
Subject *subject;
time_t plannedStartTime;
time_t plannedEndTime;
int priority;
bool done;
}Event;
//to Ical
typedef struct DayPlan{
int availableTime;
time_t date;
Event ** plan; //arr of event*
size_t planLen;//len of plan array
size_t planSize;//allocated space fro plan array
Event * plan;
}DayPlan;
```