diff --git a/doc/Flowchart1.drawio b/doc/Flowchart1.drawio new file mode 100644 index 0000000..5cb3f24 --- /dev/null +++ b/doc/Flowchart1.drawio @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc/Flowchart1.pdf b/doc/Flowchart1.pdf new file mode 100644 index 0000000..ffd44c1 Binary files /dev/null and b/doc/Flowchart1.pdf differ diff --git a/doc/docu.md b/doc/docu.md new file mode 100644 index 0000000..ee56ad4 --- /dev/null +++ b/doc/docu.md @@ -0,0 +1,24 @@ +# Data strucures + +? +```C +typedef struct Subject{ + char * name; + time_t * created; + time_t * deadline; + int priority; +} Subject; + +typedef struct Event { + Subject * subject; + time_t plannedStartTime; + time_t plannedEndTime; + bool done; +}Event; + +typedef struct DayPlan{ + int availableTime; + time_t date; + Event * plan; +}DayPlan; +```