blob: 86dff6bea8aee05b360721e094eb5564f35af514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <stdlib.h>
#include <utime.h>
#include <sys/time.h>
int utimes (const char *file, const struct timeval tvp[2])
{
struct utimbuf buf, *times;
if (tvp) {
times = &buf;
times->actime = tvp[0].tv_sec;
times->modtime = tvp[1].tv_sec;
}
else
times = NULL;
return utime(file, times);
}
|