home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d443
/
dice
/
dice.lzh
/
include
/
sys
/
stat.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-04-08
|
382b
|
28 lines
/*
* SYS/STAT.H
*/
#ifndef _SYS_STAT_H
#define _SYS_STAT_H
#ifndef LIBRARIES_DOS_H
#include <libraries/dos.h>
#endif
#define S_IFMT 0xF0000
#define S_IFREG 0x10000
#define S_IFDIR 0x20000
#define S_IFLNK 0x30000
#define S_IFCHR 0x40000
#define S_IFBLK 0x50000
struct stat {
long st_mode;
long st_size;
long st_ctime;
};
#endif