private.h 162 B

12345678
  1. #include "faux/vec.h"
  2. struct faux_vec_s {
  3. void *data;
  4. size_t len;
  5. size_t item_size;
  6. faux_vec_kcmp_fn kcmpFn; // Function to compare key and vector's item
  7. };