diff options
| author | Mistivia <i@mistivia.com> | 2025-06-17 09:12:35 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-17 09:12:35 +0800 |
| commit | 6f1cfbda4a519ad8a232d126539a2732ab43c671 (patch) | |
| tree | fe33602e4dd8419b216ca755ea91c63c72ffa65b /src/sexp.c | |
init
Diffstat (limited to 'src/sexp.c')
| -rw-r--r-- | src/sexp.c | 8 |
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); |
