iview.h 324 B

12345678910111213141516171819202122
  1. /** @file view.h
  2. *
  3. * @brief Klish scheme's "view" entry
  4. */
  5. #ifndef _klish_iview_h
  6. #define _klish_iview_h
  7. #include <klish/icommand.h>
  8. typedef struct iview_s {
  9. char *name;
  10. icommand_t * (*commands)[];
  11. } iview_t;
  12. C_DECL_BEGIN
  13. char *iview_to_text(const iview_t *iview, int level);
  14. C_DECL_END
  15. #endif // _klish_iview_h