vec.h 328 B

12345678910111213141516171819202122
  1. /** @file vec.h
  2. * @brief Public interface for a variable length vector.
  3. */
  4. #ifndef _faux_vec_h
  5. #define _faux_vec_h
  6. #include <stddef.h>
  7. #include <faux/faux.h>
  8. typedef struct faux_vec_s faux_vec_t;
  9. typedef int (*faux_vec_kcmp_fn)(const void *key, const void *item);
  10. C_DECL_BEGIN
  11. C_DECL_END
  12. #endif /* _faux_vec_h */