| util.h | 112 typedef struct __stat64 stat_t; typedef in typeref:struct:__stat64 115 typedef struct _stati64 stat_t; typedef in typeref:struct:_stati64 117 typedef struct stat stat_t; typedef in typeref:struct:stat 137 int UTIL_stat(const char* filename, stat_t* statbuf); 138 int UTIL_fstat(const int fd, const char* filename, stat_t* statbuf); 142 * provided stat_t. Currently sets owner, group, atime, and mtime. Will only 149 int UTIL_setFileStat(const char* filename, const stat_t* statbuf); 150 int UTIL_setFDStat(const int fd, const char* filename, const stat_t* statbuf); 158 int UTIL_utime(const char* filename, const stat_t *statbuf); 161 * These helpers operate on a pre-populated stat_t, i.e., the result o [all...] |