vstr.h (91B)
1 #ifndef _VST_H 2 #define _VST_H 3 4 typedef struct { 5 char *str; 6 size_t len; 7 } vstr_t; 8 9 #endif