#include "standards.h" #include #include "vec.h" void vec_free(void* vv) { vec_type* v=vv; free(v->s); vec_init(v); }