diff options
author | Tucker Evans <tucker@tuckerevans.com> | 2020-07-03 00:13:04 -0400 |
---|---|---|
committer | Tucker Evans <tucker@tuckerevans.com> | 2020-07-04 22:29:31 -0400 |
commit | 8d5b381b540fe1d780311e4f4059dce014a6cb91 (patch) | |
tree | b43273bc4c2b9d20baadf9f2c35948888fab6619 /collections/vector/vector.h | |
parent | 80d98a39a6bc4b71c74f240df617495e816b98b9 (diff) |
Add copy function for vector
Diffstat (limited to 'collections/vector/vector.h')
-rw-r--r-- | collections/vector/vector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/collections/vector/vector.h b/collections/vector/vector.h index 54e40a7..229b4b0 100644 --- a/collections/vector/vector.h +++ b/collections/vector/vector.h @@ -12,4 +12,5 @@ void* vec_pop(vec*); void vec_free(vec*); void vec_clear(vec*); void vec_print(vec*, char* (void*)); +vec* vec_cp(vec*); #endif |