📄 ush.h
字号:
/* ush.h *//* header file for ush with general includes and definitions */#ifndef _USH_H#define _USH_H#include <stdio.h>#include <string.h>#include <stdlib.h>#include <signal.h>#include <unistd.h>#include <sys/wait.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <dirent.h>#ifndef MAXSIG#define MAXSIG 31#endif#define TRUE 1#define FALSE 0#define lowbyte(w) ((w) & 0377)#define highbyte(w) lowbyte((w) >> 8)typedef short BOOLEAN;#define MAXVAR 50extern char **environ;char *malloc(), *realloc();#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -