You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
228 B

3 years ago
  1. #ifndef FUN_H_INCLUDED
  2. #define FUN_H_INCLUDED
  3. #define MAXLINE (80)
  4. void history(char *cmdline);
  5. void print_his(char *argv);
  6. void eval(char *cmdline);
  7. int parseline(const char *cmdline, char **argv);
  8. #endif // FUN_H_INCLUDED