aboutsummaryrefslogtreecommitdiff
path: root/examples/simple.c
blob: 74a875059979d843b93a1b2637fdf91b38e062cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "ls_vec.h"

LS_VEC_INLINE(int, int_vec)

int main(void) {
    int_vec vec;
    int_vec_init(&vec);
    int_vec_push(&vec, 12);
    int_vec_clear(&vec);
    return 0;
}