aboutsummaryrefslogtreecommitdiff
path: root/src/vec.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-25 20:44:20 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-25 20:44:20 +0300
commit8f44960246c39845df83464ea9b4bc59220265aa (patch)
tree6965b61ec7c193378bc38386450e05beea145048 /src/vec.h
parentfe3d9c7dfbe4190ecf0919abe474e4da4c019566 (diff)
downloadejit-8f44960246c39845df83464ea9b4bc59220265aa.tar.gz
ejit-8f44960246c39845df83464ea9b4bc59220265aa.zip
example compiles under jit
Diffstat (limited to 'src/vec.h')
-rw-r--r--src/vec.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/vec.h b/src/vec.h
index 7a1d5cb..e998e27 100644
--- a/src/vec.h
+++ b/src/vec.h
@@ -92,4 +92,14 @@ static inline void vec_sort(struct vec *v, vec_comp_t comp)
qsort(v->buf, v->n, v->ns, (__compar_fn_t)comp);
}
+static inline void vec_reserve(struct vec *v, size_t n)
+{
+ if (v->n >= n)
+ return;
+
+ v->n = n;
+ v->s = n;
+ v->buf = realloc(v->buf, v->s * v->ns);
+}
+
#endif /* VEC_H */