aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.h
diff options
context:
space:
mode:
authorkatherine <ageha@airen-no-jikken.icu>2019-12-20 09:28:54 -0700
committerkatherine <ageha@airen-no-jikken.icu>2019-12-20 09:28:54 -0700
commit41f73b0a45ba3e63ac33ebdc99f12481f5b7cdab (patch)
treecb863c4372a1386a27cd1e655afeeb160f396d46 /src/print.h
parent31632d4edbd903826cbf8f6bb93969f0d1a983fb (diff)
downloadevery-41f73b0a45ba3e63ac33ebdc99f12481f5b7cdab.tar.gz
implement printing
Diffstat (limited to 'src/print.h')
-rw-r--r--src/print.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/print.h b/src/print.h
new file mode 100644
index 0000000..5bbc2c1
--- /dev/null
+++ b/src/print.h
@@ -0,0 +1,9 @@
+#ifndef EVERY_PRINT_H
+#define EVERY_PRINT_H
+
+#include "calendar.h"
+
+void print_console(struct calendar_s *cal);
+void print_script(struct calendar_s *cal);
+
+#endif