diff options
author | default <nobody@localhost> | 2022-09-19 21:24:55 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-19 21:24:55 +0200 |
commit | 91adc4817866dcde11bc0547b2ee9ab672dbc2d8 (patch) | |
tree | 2f382ec278e9edefd5cbfd911cc96a5aa9c35069 /snac.h | |
parent | 0d86568346d116f96abfe81e5b0ae05ba17b17c2 (diff) |
Added time functions.
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,10 @@ extern d_char *srv_baseurl; extern int dbglevel; +d_char *xs_time(char *fmt, int local); +#define xs_local_time(fmt) xs_time(fmt, 1) +#define xs_utc_time(fmt) xs_time(fmt, 0) + void srv_log(d_char *str); int srv_open(char *basedir); |