aboutsummaryrefslogtreecommitdiff
path: root/collections/vector/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'collections/vector/vector.h')
-rw-r--r--collections/vector/vector.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/collections/vector/vector.h b/collections/vector/vector.h
index 55e9481..1b47642 100644
--- a/collections/vector/vector.h
+++ b/collections/vector/vector.h
@@ -21,6 +21,8 @@ void* vec_back(vec*);
void vec_set(vec*, int, void*);
void* vec_index(vec*, int);
+void vec_insert(vec*, int, void*);
+
void vec_swap(vec*, int, int);
void* vec_swap_pop(vec*, int);