Loli-Ruri
Results
1
issues of
Loli-Ruri
``` c #define vec_unpack_(v)\ (char**)&(v)->data, &(v)->length, &(v)->capacity, sizeof(*(v)->data) ``` Strictly speaking, `(char**)&(v)->data` is only correctly defined when `data` actually is a char-pointer, elsewise dereferencing this pointer in your functions causes...