private.h 389 B

12345678910111213141516171819
  1. /*
  2. * clish/config/private.h
  3. */
  4. #include "clish/config.h"
  5. /*---------------------------------------------------------
  6. * PRIVATE TYPES
  7. *--------------------------------------------------------- */
  8. struct clish_config_s {
  9. clish_config_op_e op; /* CONFIG operation */
  10. unsigned short priority;
  11. char *pattern;
  12. char *file;
  13. bool_t splitter;
  14. char *seq;
  15. bool_t unique;
  16. char *depth;
  17. };