1 2 3 4 5 6
#include <time.h> // for asctime, localtime, ctime, time_t char *ctime(const time_t *clock) { return asctime(localtime(clock)); }