types.h 268 B

123456789101112131415161718
  1. /*
  2. * types.h
  3. */
  4. #ifndef _clish_types_h
  5. #define _clish_types_h
  6. #include "lub/c_decl.h"
  7. #include "lub/argv.h"
  8. struct clish_help_s {
  9. lub_argv_t *name;
  10. lub_argv_t *help;
  11. lub_argv_t *detail;
  12. };
  13. typedef struct clish_help_s clish_help_t;
  14. #endif /* _clish_types_h */