PS2SDK
PS2 Homebrew Libraries
utime.h
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # Copyright ps2dev - http://www.ps2dev.org
7 # Licenced under Academic Free License version 2.0
8 # Review ps2sdk README & LICENSE files for further details.
9 */
10 
11 #ifndef _SYS_UTIME_H
12 #define _SYS_UTIME_H
13 
14 #include <time.h>
15 
16 __BEGIN_DECLS
17 
18 /*
19  * POSIX 1003.1b 5.6.6 Set File Access and Modification Times
20  */
21 
22 struct utimbuf
23 {
24  time_t actime; /* Access time */
25  time_t modtime; /* Modification time */
26 };
27 
28 extern int utime(const char *pathname, const struct utimbuf *times);
29 
30 __END_DECLS
31 
32 #endif /* _SYS_UTIME_H */
time.h
utimbuf
Definition: utime.h:22