2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
11 ctime(const time_t *_timer
)
13 return asctime(localtime(_timer
));
18 ctime_r(const time_t *_timer
, char *buf
)
21 return asctime_r(localtime_r(_timer
, &tm
), buf
);