⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 buildin.h

📁 Linux下写一个命令解释程序,实现了基本的功能.
💻 H
字号:
/* This file defines the interface for the build-in functions. */

#if! defined (__BUILDIN_H_)
#define __BUILDIN_H_

extern int __cd(const char *path_name);

extern void __copy(const char *dest, const char *source);

extern int __del(const char *file_name);

extern int __dir(const char *path_name);

extern int __find(const char *path_name, const char *file_name);

extern int __md(const char *dir_name);

extern int __more(int fd);

extern char * __pwd(void);

extern char * __time(const char *format);

extern int __ren(const char *old_name, const char *new_name);

#endif /* __BUILDIN_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -