当前位置: 技术问答>linux和unix
有没有命令可以查找某个函数所需包含的头文件?
来源: 互联网 发布时间:2016-08-22
本文导语: 如题,如果用find + grep 有点麻烦? | man 函数名 | 我这里man open的结果 #include #include #include int open(const char *pathname, int flags); int open(const char *pathname, ...
如题,如果用find + grep 有点麻烦?
|
man 函数名
|
我这里man open的结果
#include
#include
#include
int open(const char *pathname, int flags);
int open(const char *pathname, int flags, mode_t mode);
int creat(const char *pathname, mode_t mode);
不知道你是不是用的Ubuntu 默认好像没有安装c语言等的man手册
#include
#include
#include
int open(const char *pathname, int flags);
int open(const char *pathname, int flags, mode_t mode);
int creat(const char *pathname, mode_t mode);
不知道你是不是用的Ubuntu 默认好像没有安装c语言等的man手册
|
用 man最好
|
有可能是你没有安装 man, 比如 ubuntu上面默认是没有装的,