#include "standards.h" #include #include "vec.h" void vec_init(void* vv) { vec_type* v=vv; v->s=NULL; v->a=0; v->len=0; }