PSXSDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
stat.h
Go to the documentation of this file.
1 
7 #ifndef _SYS_STAT_H
8 #define _SYS_STAT_H
9 
10 struct stat
11 {
12  unsigned int st_size;
13  unsigned int st_blksize;
14  unsigned int st_blocks;
15 };
16 
17 int stat(const char *path, struct stat *sb);
18 
19 #endif