aboutsummaryrefslogtreecommitdiff
path: root/src/guile_type_helpers.h
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-11-02 22:29:47 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-11-02 22:29:47 +0100
commit3a1d3898c3d42d43645b79586f0b26ab4f8ff331 (patch)
tree9f4d1a41f33bebcff24ade2e5364d87f8bb78c82 /src/guile_type_helpers.h
parentMove parser into module subtree. (diff)
downloadcalp-3a1d3898c3d42d43645b79586f0b26ab4f8ff331.tar.gz
calp-3a1d3898c3d42d43645b79586f0b26ab4f8ff331.tar.xz
Remove ALL c code.
Diffstat (limited to '')
-rw-r--r--src/guile_type_helpers.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/guile_type_helpers.h b/src/guile_type_helpers.h
deleted file mode 100644
index fe0e875a..00000000
--- a/src/guile_type_helpers.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef GUILE_TYPE_HELPERS_H
-#define GUILE_TYPE_HELPERS_H
-
-#include <libguile.h>
-
-#include "strbuf.h"
-
-#define SCM_IS_LIST(x) scm_is_true(scm_list_p(x))
-#define string_eq(a, b) \
- scm_is_true(scm_string_eq(a, b, \
- SCM_UNDEFINED,SCM_UNDEFINED,SCM_UNDEFINED,SCM_UNDEFINED))
-
-SCM scm_from_strbuf(strbuf* s);
-SCM scm_from_strbuf_symbol(strbuf* s);
-
-#endif /* GUILE_TYPE_HELPERS_H */