private.h 308 B

12345678910111213141516171819
  1. /*
  2. * private.h
  3. */
  4. #ifndef _clish_private_h
  5. #define _clish_private_h
  6. #include "lub/c_decl.h"
  7. #include "lub/argv.h"
  8. /*#include "clish/internal.h"*/
  9. struct help_argv_s {
  10. lub_argv_t *matches;
  11. lub_argv_t *help;
  12. lub_argv_t *detail;
  13. };
  14. typedef struct help_argv_s help_argv_t;
  15. #endif /* _clish_private_h */