📄 myshell.h
字号:
/* * This file declares the functions which will be used in myshell.c. * It also defines global variables. * It also defines macros. */#ifndef MYSHELL_H#define MYSHELL_H/* * myshell's user interface */int my_exit();void my_ls(char **);void my_sort(char **);void my_vi(char **);void my_add(char **);void my_args(char **);long get_number(char *);void my_history(char **);void my_ex_hcmd(char **);void add_history_cmd(char **);/* * Error handler, display the error information to user */void my_err_handler(const char *);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -