diff options
| author | Mistivia <i@mistivia.com> | 2025-07-01 19:14:09 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-07-01 19:14:09 +0800 |
| commit | aec1c5667b130d40c86403037bb16463f77db7bb (patch) | |
| tree | 5b43e82fe5a4e4fe086947fcf3f793a2cebda906 /src/sexp.h | |
| parent | 10b2b4d98d9a96890779007e4e574bb4471f1031 (diff) | |
use pointer instead of handler in gc
Diffstat (limited to 'src/sexp.h')
| -rw-r--r-- | src/sexp.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -109,10 +109,15 @@ struct sexp { }; }; +typedef SExp *SExpPtr; + + void SExp_show(SExp self, FILE* fp); void SExpRef_show(SExpRef self, FILE* fp); +void SExpPtr_show(SExpPtr self, FILE* fp); VECTOR_DEF(SExp); +VECTOR_DEF(SExpPtr); #endif |
