aboutsummaryrefslogtreecommitdiff
path: root/sexp.c
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-07-22 15:34:57 +0800
committerMistivia <i@mistivia.com>2025-07-22 15:35:11 +0800
commitea5c15cbd628953e7b9d17b45ea685006a582cd4 (patch)
tree0440a31d4fb2f73cd150fa11f19ac08fd23562f9 /sexp.c
parentd64a599af8c6b52223b20f727d76a59a562abb75 (diff)
change dir structure
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);