enlightenment/src/util.c

11 lines
152 B
C

#include "e.h"
time_t
e_file_modified_time(char *file)
{
struct stat st;
if (stat(file, &st) < 0) return 0;
return st.st_mtime;
}