dep

Package manager for embedded C libraries
git clone git://git.finwo.net/app/dep
Log | Files | Refs | README | LICENSE

command.h (213B)


      1 struct cmd_struct {
      2   void        *next;
      3   const char **name;
      4   const char  *display;
      5   const char  *description;
      6   const char  *help_text;
      7   int (*fn)(int, const char **);
      8 };
      9 
     10 extern struct cmd_struct *commands;