aboutsummaryrefslogtreecommitdiff
path: root/collections/vector/vector.h
diff options
context:
space:
mode:
authorTucker Evans <tucker@tuckerevans.com>2020-07-02 19:16:19 -0400
committerTucker Evans <tucker@tuckerevans.com>2020-07-04 22:27:59 -0400
commit98454f841b5ac87d2253c2fae0aba2525853f907 (patch)
treeaf9652f3e5f9ad9cf560089c91f12ce39923a17b /collections/vector/vector.h
parent264857903db99135c8c09d12b3e8af93ac1c7f88 (diff)
Add pop to 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 63151ac..81eea22 100644
--- a/collections/vector/vector.h
+++ b/collections/vector/vector.h
@@ -8,4 +8,5 @@ vec* vec_with_capacity(int);
int vec_size(vec*);
void vec_push(vec*, void*);
void* vec_index(vec*, int);
+void* vec_pop(vec*);
#endif