aboutsummaryrefslogtreecommitdiff
path: root/collections/vector/vector.h
diff options
context:
space:
mode:
authorTucker Evans <tucker@tuckerevans.com>2020-07-03 01:18:17 -0400
committerTucker Evans <tucker@tuckerevans.com>2020-07-04 23:11:41 -0400
commit1a41fe605ab6bde15f622e72abb7aee846531fcf (patch)
treeeaffdc8276bc59989d13e32b4a572b8a6c2b1afb /collections/vector/vector.h
parent72cb2e77024970509ff403670f9e4245bcefebd6 (diff)
Add swap_pop function for vectors
Diffstat (limited to 'collections/vector/vector.h')
-rw-r--r--collections/vector/vector.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/collections/vector/vector.h b/collections/vector/vector.h
index 2b1e8e9..55e9481 100644
--- a/collections/vector/vector.h
+++ b/collections/vector/vector.h
@@ -22,6 +22,7 @@ void vec_set(vec*, int, void*);
void* vec_index(vec*, int);
void vec_swap(vec*, int, int);
+void* vec_swap_pop(vec*, int);
/*memory*/