diff options
author | Martin Mares <mj@ucw.cz> | 1999-08-03 19:29:27 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-08-03 19:29:27 +0000 |
commit | 913f7dc9f2dca8bebf8daebcce006b96f55ae6db (patch) | |
tree | 8c428489609b26d626fc30feabfcf7a1117eb2f5 /sysdep/unix/timer.h | |
parent | 6542ece91a783e999f61cc51cbe18c8b4c96a36c (diff) |
Added functions for parsing and formatting of dates.
Diffstat (limited to 'sysdep/unix/timer.h')
-rw-r--r-- | sysdep/unix/timer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdep/unix/timer.h b/sysdep/unix/timer.h index 10351a61..afb2668a 100644 --- a/sysdep/unix/timer.h +++ b/sysdep/unix/timer.h @@ -32,4 +32,8 @@ void tm_dump_all(void); extern bird_clock_t now; /* Time in seconds since unknown epoch */ +bird_clock_t tm_parse_date(char *); /* Convert date to bird_clock_t */ +void tm_format_date(char *, bird_clock_t); /* Convert bird_clock_t to date */ +#define TM_DATE_BUFFER_SIZE 12 /* Buffer size required by tm_format_date */ + #endif |