aboutsummaryrefslogtreecommitdiff
path: root/src/sexp.c
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-17 09:12:35 +0800
committerMistivia <i@mistivia.com>2025-06-17 09:12:35 +0800
commit6f1cfbda4a519ad8a232d126539a2732ab43c671 (patch)
treefe33602e4dd8419b216ca755ea91c63c72ffa65b /src/sexp.c
init
Diffstat (limited to 'src/sexp.c')
-rw-r--r--src/sexp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sexp.c b/src/sexp.c
new file mode 100644
index 0000000..b268414
--- /dev/null
+++ b/src/sexp.c
@@ -0,0 +1,8 @@
+#include "sexp.h"
+#include "algds/vec.h"
+
+void SExp_show(SExp self, FILE* fp) {
+ fprintf(fp, "{SEXP}");
+}
+
+VECTOR_IMPL(SExp);