#include "../config.h" #include #ifdef HAVE_STRING_H #include #endif /* HAVE_STRING_H */ #include "common.h" char *getTimeStr(const time_t *t, char *buf, int len) { char *p = ctime(t); if (!p) return 0; STRNCPY(buf, p, len); return buf; }