- 论坛徽章:
- 0
|
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ourhdr.h>
int main(int argc, char* argv[])
{
int I;
struct stat buf;
char *ptr;
for(I=1;I<argc;I++)
{
printf("%s:",argv[I]);
if(Istat(argv[I],&buf)<0)
{
printf("Istat error" ;
continue;
}
if(S_ISREG(buf.st_mode))
ptr="regular";
else if(S_ISDIR(buf.st_mode))
ptr="directory";
else if (S_ISCHR(buf.st_mode))
ptr="character special";
else if (S_ISBLK(buf.st_mode))
ptr="block special";
else if (S_ISFIFO(buf.st_mode))
ptr="fifo";
#ifdef S_ISLNK
else if (S_ISLNK(buf.st_mode))
ptr="symbolic link";
#endif
#ifdef S_ISSOCK
else if (S_ISSOCK(buf.st_mode))
ptr="socket";
#endif
else
ptr="***unknow mode***";
printf("%s\n",ptr);
}
return 0;
}
生成时不能通过
$ gcc -Wall -o stat1 stat1.c
stat1.c: 在函数‘main’中:
stat1.c:38: 警告: 隐式声明函数‘Istat’
/tmp/ccSEb5DX.o: In function `main':
stat1.c .text+0x57): undefined reference to `Istat'
collect2: ld 返回 1
怎么能让Istat函数可以用呢?
另外如果将Istat函数相关代码屏蔽后可以通过编译生成,但生成的可执行文件检测任何文件都是“unknow mode”,这是怎么回事? |
|