kcommand.h 297 B

12345678910111213141516171819202122
  1. /** @file kcommand.h
  2. *
  3. * @brief Klish scheme's "command" entry
  4. */
  5. #ifndef _klish_kcommand_h
  6. #define _klish_kcommand_h
  7. typedef struct kcommand_s kcommand_t;
  8. typedef struct kcommand_info_s {
  9. char *name;
  10. char *help;
  11. } kcommand_info_t;
  12. C_DECL_BEGIN
  13. C_DECL_END
  14. #endif // _klish_kcommand_h