Implement Timestamps() for UNIX et al.

This commit is contained in:
2019-04-28 22:37:42 +01:00
parent 0ef6ef82c0
commit 781e5a6b63
2 changed files with 286 additions and 1 deletions

View File

@@ -375,6 +375,18 @@
#define ST_NODIRATIME 2048
#endif
#define DATETIME_FORMAT "This file is dated %s for %s\n"
#define LESSDATETIME "2106/02/07 06:28:15 or unknown"
#define MAXDATETIME "2038/01/19 03:14:07"
#define MINDATETIME "1970/01/01 00:00:00"
#define Y2KDATETIME "2000/01/01 00:00:00"
#define Y1KDATETIME "1999/12/31 23:59:59"
#define LESSTIMESTAMP 0xFFFFFFFF
#define MAXTIMESTAMP 0x7FFFFFFF
#define MINTIMESTAMP 0x00000000
#define Y2KTIMESTAMP 0x386D4380
#define Y1KTIMESTAMP 0x386D437F
#endif
#endif // SETTER_UNIX_H