aboutsummaryrefslogtreecommitdiff
path: root/scheme.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-02 19:44:39 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-02 19:44:39 +0100
commit382a40466a9339b8153180303ae799ed9fd7c868 (patch)
treef50514548417f291e2f2c9051971d8c8ce9d1316 /scheme.h
parentBroke read_vcalendar of into own file. (diff)
downloadcalp-382a40466a9339b8153180303ae799ed9fd7c868.tar.gz
calp-382a40466a9339b8153180303ae799ed9fd7c868.tar.xz
Start work on a scheme interface.
Diffstat (limited to 'scheme.h')
-rw-r--r--scheme.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/scheme.h b/scheme.h
new file mode 100644
index 00000000..c06ee1a7
--- /dev/null
+++ b/scheme.h
@@ -0,0 +1,12 @@
+#ifndef SCHEME_H
+#define SCHEME_H
+
+#include <libguile.h>
+
+SCM make_calendar(SCM path);
+
+SCM calendar_get_attr(SCM calendar, SCM id, SCM attr);
+
+void init_calendar ();
+
+#endif /* SCHEME_H */