1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-15 00:12:00 +02:00
Files
coreutils/lib/posixtm.h

13 lines
253 B
C
Raw Normal View History

1998-09-07 02:18:43 +00:00
#ifndef POSIXTM_H_
# define POSIXTM_H_
1998-09-07 02:17:55 +00:00
/* POSIX Date Syntax flags. */
1998-09-07 02:18:43 +00:00
# define PDS_LEADING_YEAR 1
# define PDS_TRAILING_YEAR 2
# define PDS_CENTURY 4
# define PDS_SECONDS 8
1998-09-07 02:17:55 +00:00
2003-06-18 07:57:26 +00:00
bool posixtime (time_t *p, const char *s, unsigned int syntax_bits);
1998-09-07 02:18:43 +00:00
#endif