aboutsummaryrefslogtreecommitdiff
path: root/src/sexp.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-07-01 19:14:09 +0800
committerMistivia <i@mistivia.com>2025-07-01 19:14:09 +0800
commitaec1c5667b130d40c86403037bb16463f77db7bb (patch)
tree5b43e82fe5a4e4fe086947fcf3f793a2cebda906 /src/sexp.h
parent10b2b4d98d9a96890779007e4e574bb4471f1031 (diff)
use pointer instead of handler in gc
Diffstat (limited to 'src/sexp.h')
-rw-r--r--src/sexp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sexp.h b/src/sexp.h
index 1c4016b..4aec76d 100644
--- a/src/sexp.h
+++ b/src/sexp.h
@@ -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