aboutsummaryrefslogtreecommitdiff
path: root/guile_type_helpers.h__
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-18 22:39:56 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-18 22:39:56 +0100
commit33fa5b5d0c512c72c1d50b9420a36431cd10eb5d (patch)
tree6642ec876ecd15ce62f83075d7f9d261050fe3a6 /guile_type_helpers.h__
parentStart rework of guile interface. (diff)
downloadcalp-33fa5b5d0c512c72c1d50b9420a36431cd10eb5d.tar.gz
calp-33fa5b5d0c512c72c1d50b9420a36431cd10eb5d.tar.xz
Made to compile as C++.
Diffstat (limited to 'guile_type_helpers.h__')
-rw-r--r--guile_type_helpers.h__13
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 */