aboutsummaryrefslogtreecommitdiffstats
path: root/src/calendar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/calendar.h')
-rw-r--r--src/calendar.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/calendar.h b/src/calendar.h
index f5f1286..ccf59bb 100644
--- a/src/calendar.h
+++ b/src/calendar.h
@@ -3,8 +3,15 @@
#include "entry.h"
+#include <stdio.h>
+#include <stdbool.h>
+
struct calendar_s {
+ size_t count, width;
struct entry_s *entries;
+ bool err_flag;
};
+struct calendar_s calendar_parse(FILE *f);
+
#endif