aboutsummaryrefslogtreecommitdiff
path: root/collections/vector/vector.h
blob: 5465108475ba0b082caef3cf46bbaa8018cf943c (plain)
1
2
3
4
5
6
7
8
9
#ifndef VECTOR_H
#define VECTOR_H

typedef struct vector vec;

vec* vec_new();
vec* vec_with_capacity(int);
int vec_size(vec*);
#endif