From 80d98a39a6bc4b71c74f240df617495e816b98b9 Mon Sep 17 00:00:00 2001 From: Tucker Evans Date: Thu, 2 Jul 2020 20:21:28 -0400 Subject: Add printing functions for vectors --- collections/vector/vector.h | 1 + 1 file changed, 1 insertion(+) (limited to 'collections/vector/vector.h') diff --git a/collections/vector/vector.h b/collections/vector/vector.h index 3996030..54e40a7 100644 --- a/collections/vector/vector.h +++ b/collections/vector/vector.h @@ -11,4 +11,5 @@ void* vec_index(vec*, int); void* vec_pop(vec*); void vec_free(vec*); void vec_clear(vec*); +void vec_print(vec*, char* (void*)); #endif -- cgit v1.1