diff options
| author | Mistivia <i@mistivia.com> | 2025-07-22 15:34:57 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-07-22 15:35:11 +0800 |
| commit | ea5c15cbd628953e7b9d17b45ea685006a582cd4 (patch) | |
| tree | 0440a31d4fb2f73cd150fa11f19ac08fd23562f9 /sexp.c | |
| parent | d64a599af8c6b52223b20f727d76a59a562abb75 (diff) | |
change dir structure
Diffstat (limited to 'sexp.c')
| -rw-r--r-- | sexp.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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); |
