当前位置: 技术问答>linux和unix
linux编程指南例子的一个问题
来源: 互联网 发布时间:2016-04-23
本文导语: /* * mstat.c - Naive stat(1) program */ #include #include #include #include #include #include #include int main(int argc, char **argv) { struct stat buf; mode_t mode; char type[80]; int fd; /* validate the command line */ if(argc != 2){ puts("USAG...
/*
* mstat.c - Naive stat(1) program
*/
#include
#include
#include
#include
#include
#include
#include
int main(int argc, char **argv)
{
struct stat buf;
mode_t mode;
char type[80];
int fd;
/* validate the command line */
if(argc != 2){
puts("USAGE: mstat {file}");
exit(EXIT_FAILURE);
}
/* open the file*/
if((fd = open(argv[1], O_RDONLY))