Lines Matching refs:stat
61 #include <sys/stat.h>
77 * of a previous stat() to be used again without having to do another stat,
79 * that the results of the last stat should be used. But then you get into
80 * annoying MP issues. BTW, Win32 has stat().
83 file_stats(const char *file, struct stat *stats) {
89 if (stat(file, stats) != 0)
98 struct stat stats;
335 struct stat stats;
347 struct stat filestat;
348 memset(&filestat,0,sizeof(struct stat));
350 if ((stat(filename, &filestat)) == -1)