aboutsummaryrefslogtreecommitdiff
path: root/src/sexp.c
blob: b2684144c378cd2724ffc5d3608f4bae28b43e85 (plain)
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);