enlightenment/src/util.c

11 lines
152 B
C
Raw Normal View History

2000-12-08 14:54:42 -08:00
#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;
}