private.h 416 B

12345678910111213141516171819202122
  1. /*
  2. * conf.h
  3. */
  4. #ifndef conf_private_h
  5. #define conf_private_h
  6. #include "cliconf/conf.h"
  7. #include "lub/types.h"
  8. #include "lub/bintree.h"
  9. /*---------------------------------------------------------
  10. * PRIVATE TYPES
  11. *--------------------------------------------------------- */
  12. struct cliconf_s {
  13. lub_bintree_t tree;
  14. lub_bintree_node_t bt_node;
  15. char *line;
  16. unsigned short priority;
  17. bool_t splitter;
  18. };
  19. #endif