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; }