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

typedef struct vector vec;

vec* vec_new();
vec* vec_with_capacity(int);
int vec_size(vec*);
void vec_push(vec*, void*);
#endif