diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-25 20:44:20 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-06-25 20:44:20 +0300 |
commit | 8f44960246c39845df83464ea9b4bc59220265aa (patch) | |
tree | 6965b61ec7c193378bc38386450e05beea145048 /src/vec.h | |
parent | fe3d9c7dfbe4190ecf0919abe474e4da4c019566 (diff) | |
download | ejit-8f44960246c39845df83464ea9b4bc59220265aa.tar.gz ejit-8f44960246c39845df83464ea9b4bc59220265aa.zip |
example compiles under jit
Diffstat (limited to 'src/vec.h')
-rw-r--r-- | src/vec.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 */ |