blob: d8feb4dbd3cb086bcbbc2422adf5ef45f568b13d (
plain)
1
2
3
4
5
6
7
8
9
10
11
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);
|