1 Star 0 Fork 1

冰雪不语/iceshell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
def.h 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
冰雪不语 提交于 2015-05-09 16:40 . 增加cd和命令错误功能
#ifndef _DEF_H_
#define _DEF_H_
#include <stdio.h>
#include <stdlib.h>
#define MAXLINE 1024 //输入行的最大长度
#define MAXARG 20 //每个简单命令的参数的最多个数
#define PIPELINE 5 //一个管道行中简单命令的最多个数
#define MAXNAME 100 //IO重定向文件名的最大长度
#define err_sys(info) { \
fprintf(stderr, "%s:%s\n", info, strerror(errno)); \
exit(EXIT_FAILURE); \
}
#define ERR_EXIT(m) \
do { \
perror(m); \
exit(EXIT_FAILURE); \
} while(0);
typedef struct command {
char *args[MAXARG-1]; //解析出的命令参数列表
int infd; //输入描述符
int outfd; //输出描述符
} COMMAND;
#endif //_DEF_H_
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/icemute/iceshell.git
git@gitee.com:icemute/iceshell.git
icemute
iceshell
iceshell
master

搜索帮助