mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-13 03:44:26 +08:00
12 lines
256 B
C
12 lines
256 B
C
/* POSIX Date Syntax flags. */
|
|
#define PDS_LEADING_YEAR 1
|
|
#define PDS_TRAILING_YEAR 2
|
|
#define PDS_CENTURY 4
|
|
#define PDS_SECONDS 8
|
|
|
|
time_t
|
|
posixtime (const char *s, unsigned int syntax_bits);
|
|
|
|
struct tm *
|
|
posixtm (const char *s, unsigned int syntax_bits);
|