当前位置: 代码迷 >> C语言 >> 关于stat.h
  详细解决方案

关于stat.h

热度:280   发布时间:2005-04-30 14:01:00.0
关于stat.h

/* stat.h

Definitions used for file status functions

Copyright (c) Borland International 1987,1988 All Rights Reserved. */ #if __STDC__ #define _Cdecl #else #define _Cdecl cdecl #endif

#ifndef _STAT_H #define _STAT_H 1

#define S_IFMT 0xF000 /* file type mask */ #define S_IFDIR 0x4000 /* directory */ #define S_IFIFO 0x1000 /* FIFO special */ #define S_IFCHR 0x2000 /* character special */ #define S_IFBLK 0x3000 /* block special */ #define S_IFREG 0x8000 /* or just 0x0000, regular */ #define S_IREAD 0x0100 /* owner may read */ #define S_IWRITE 0x0080 /* owner may write */ #define S_IEXEC 0x0040 /* owner may execute <directory search> */

struct stat { short st_dev; short st_ino; short st_mode; short st_nlink; int st_uid; int st_gid; short st_rdev; long st_size; long st_atime; long st_mtime; long st_ctime; };

int _Cdecl fstat (int handle, struct stat *statbuf); int _Cdecl stat (char *path, struct stat *statbuf);

#endif /* _STAT_H */ 这个头文件干嘛用的啊 还有前面的0xF000 0x0040这样的东西是做什么的啊

搜索更多相关的解决方案: stat  

----------------解决方案--------------------------------------------------------
至于干什么的不知道,估计是一些专门的开发工具,至于那些数,不过是十六进制的值而已。
----------------解决方案--------------------------------------------------------
这个是原程序 啊
你怎么拿来那?晕
----------------解决方案--------------------------------------------------------
  相关解决方案