aboutsummaryrefslogtreecommitdiff
path: root/sexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'sexp.c')
-rw-r--r--sexp.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sexp.c b/sexp.c
new file mode 100644
index 0000000..d8feb4d
--- /dev/null
+++ b/sexp.c
@@ -0,0 +1,12 @@
+#include "sexp.h"
+#include "algds/vec.h"
+
+#include <inttypes.h>
+
+void SExpRef_show(SExpRef self, FILE* fp) {}
+void SExpPtr_show(SExpPtr self, FILE* fp) {}
+void SExp_show(SExp self, FILE* fp) {}
+
+VECTOR_IMPL(SExp);
+VECTOR_IMPL(SExpRef);
+VECTOR_IMPL(SExpPtr);