private.h 119 B

12345678910
  1. #include "faux/list.h"
  2. struct faux_pair_s {
  3. char *name;
  4. char *value;
  5. };
  6. struct faux_ini_s {
  7. faux_list_t *list;
  8. };