From 83830fd5060da98cc266a87084c28368c31bfaeb Mon Sep 17 00:00:00 2001 From: ketrptr Date: Mon, 9 Dec 2024 21:12:41 +0100 Subject: [PATCH] modified: doc/docu.md --- doc/docu.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/docu.md b/doc/docu.md index eb107ff..a2334fd 100644 --- a/doc/docu.md +++ b/doc/docu.md @@ -7,20 +7,22 @@ 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; + Event ** plan; //arr of event* + size_t planLen;//len of plan array + size_t planSize;//allocated space fro plan array }DayPlan; ```