utime.h - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       utime.h (172B)
       ---
            1 #ifndef _UTIME_H_ 
            2 #define _UTIME_H_
            3 
            4 #include <time.h>
            5 
            6 struct utimbuf {
            7         time_t actime;
            8         time_t modtime;
            9 }; 
           10 
           11 int utime(const char *path, const struct utimbuf*);
           12 
           13 #endif