aboutsummaryrefslogtreecommitdiff
path: root/guile_type_helpers.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-23 22:47:24 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-23 22:47:24 +0100
commitd176e70202a5ef3c6af8fcef0fdcc5733d641f38 (patch)
treeba175ecb2d41865f87a6678d3e9a01ed706f82a3 /guile_type_helpers.h
parentSwitch back to C compiler. (diff)
downloadcalp-d176e70202a5ef3c6af8fcef0fdcc5733d641f38.tar.gz
calp-d176e70202a5ef3c6af8fcef0fdcc5733d641f38.tar.xz
Reenable guile stuff.
Diffstat (limited to 'guile_type_helpers.h')
-rw-r--r--guile_type_helpers.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/guile_type_helpers.h b/guile_type_helpers.h
new file mode 100644
index 00000000..bb69312d
--- /dev/null
+++ b/guile_type_helpers.h
@@ -0,0 +1,13 @@
+#ifndef GUILE_TYPE_HELPERS_H
+#define GUILE_TYPE_HELPERS_H
+
+#include <libguile.h>
+
+#include "calendar.h"
+#include "strbuf.h"
+
+SCM scm_from_strbuf(strbuf* s);
+
+SCM scm_from_vector(VECT(vcomponent)* vect, SCM element_type);
+
+#endif /* GUILE_TYPE_HELPERS_H */