| util.h | 108 typedef struct __stat64 stat_t; typedef in typeref:struct:__stat64 111 typedef struct _stati64 stat_t; typedef in typeref:struct:_stati64 113 typedef struct stat stat_t; typedef in typeref:struct:stat 134 int UTIL_stat(const char* filename, stat_t* statbuf); 135 int UTIL_fstat(const int fd, const char* filename, stat_t* statbuf); 139 * provided stat_t. Currently sets owner, group, atime, and mtime. Will only 146 int UTIL_setFileStat(const char* filename, const stat_t* statbuf); 147 int UTIL_setFDStat(const int fd, const char* filename, const stat_t* statbuf); 155 int UTIL_utime(const char* filename, const stat_t *statbuf); 158 * These helpers operate on a pre-populated stat_t, i.e., the result o [all...] |