ush.h
来自「一个在LINUX下运行的shell程序」· C头文件 代码 · 共 35 行
H
35 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?