diff options
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); |
