ed

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

parse.h (104B)


      1 typedef struct cmd {
      2 	char op, **args;
      3 	int argc;
      4 } cmd;
      5 
      6 cmd *cmd_parse(char *);
      7 void cmd_free(cmd *);