1 2 3 4 5 6 7 8
#include "sexp.h" #include "algds/vec.h" void SExp_show(SExp self, FILE* fp) { fprintf(fp, "{SEXP}"); } VECTOR_IMPL(SExp);