private.h 318 B

123456789101112131415
  1. /*
  2. * conf.h
  3. */
  4. #include "clish/conf.h"
  5. #include "lub/bintree.h"
  6. /*---------------------------------------------------------
  7. * PRIVATE TYPES
  8. *--------------------------------------------------------- */
  9. struct clish_conf_s {
  10. lub_bintree_t tree;
  11. lub_bintree_node_t bt_node;
  12. char *line;
  13. clish_command_t *cmd;
  14. };