|
刚学用vi编程,感觉比起vc来麻烦好多哟。比如,vc中可以很方便地找到相关的头文件,vi中能找到吗,如果能,请问怎么找。例如,有以下源文件:
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<stdio.h>
int main(int argc,char **argv)
{
int filedes1,filedes2,fd;
mode_t fd_mode=S_IRUSR|S_IWUSR|S_IRGRP;
if((fd=open("/home/chenye/查看分区情况.txt",O_RDONLY))==-1)
perror("can not open file /home/chenye/查看分区情况.txt");
if((filedes1=open("/home/chenye/nonexistfile.txt",O_CREAT|O_RDWR,fd_mode))==-1)
perror("can not create file /home/chenye/nonesistfile.txt");
else if((filedes2=open("/home/chenye/nonexistfile.txt",O_RDONLY)==-1))
perror("can not open file nonexistfile.txt again");
close(fd);
close(filedes1);
close(filedes2);
return 0;
}
如果我想查看sys/types.h的内容 ,请问应该怎么操作?
另外,sys在这里是表示什么?
这些头文件的默认目录在哪里 ?
因为是刚学,还请各位不咅赐教,并请推荐几本合适的书。谢谢! |
|