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.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/collections/vector/vector.h b/collections/vector/vector.h
new file mode 100644
index 0000000..5465108
--- /dev/null
+++ b/collections/vector/vector.h
@@ -0,0 +1,9 @@
+#ifndef VECTOR_H
+#define VECTOR_H
+
+typedef struct vector vec;
+
+vec* vec_new();
+vec* vec_with_capacity(int);
+int vec_size(vec*);
+#endif