Staging
v0.5.1
https://github.com/python/cpython
Revision 2e96ffca7ea5843b3a13e39adcfb1b7cbf7f4b7b authored by Anthony Baxter on 18 October 2006, 07:03:14 UTC, committed by Anthony Baxter on 18 October 2006, 07:03:14 UTC
1 parent 8022fee
Raw File
Tip revision: 2e96ffca7ea5843b3a13e39adcfb1b7cbf7f4b7b authored by Anthony Baxter on 18 October 2006, 07:03:14 UTC
Tagging for release of Python 2.4.4
Tip revision: 2e96ffc
getmtime.c

/* Subroutine to get the last modification time of a file */

/* (A separate file because this may be OS dependent) */

#include "Python.h"
#include "pyconfig.h"

time_t
PyOS_GetLastModificationTime(char *path, FILE *fp)
{
	struct stat st;
	if (fstat(fileno(fp), &st) != 0)
		return -1;
	else
		return st.st_mtime;
}
back to top