aboutsummaryrefslogtreecommitdiff
path: root/src/vector.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-07-14 19:52:37 +0800
committerMistivia <i@mistivia.com>2025-07-14 19:55:14 +0800
commitdab2284cd5aae14bb166c90105a8e7b1bd290dcd (patch)
treed5009f5434c8f4f78d812c0068425b6d0bced236 /src/vector.h
parentaec1c5667b130d40c86403037bb16463f77db7bb (diff)
add vector
Diffstat (limited to 'src/vector.h')
-rw-r--r--src/vector.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vector.h b/src/vector.h
new file mode 100644
index 0000000..34113d1
--- /dev/null
+++ b/src/vector.h
@@ -0,0 +1,8 @@
+#ifndef BAMBOO_LISP_VECTOR_H_
+#define BAMBOO_LISP_VECTOR_H_
+
+#include "interp.h"
+
+void bamboo_lisp_init_vector(Interp *interp);
+
+#endif