����14-13 linux/include/utime.h
1 #ifndef _UTIME_H
2 #define _UTIME_H
3
4 #include <sys/types.h> /* I know - shouldn't do this, but .. */
5 /* ��֪�� - ��Ӧ��������������.. */
6 struct utimbuf {
7 time_t actime; // �ļ�����ʱ�䡣��1970.1.1:0:0:0��ʼ��������
8 time_t modtime; // �ļ���ʱ�䡣��1970.1.1:0:0:0��ʼ��������
9 };
10
// �����ļ����ʺ���ʱ�亯����
11 extern int utime(const char *filename, struct utimbuf *times);
12
13 #endif
14