#include <time.h> char *asctime(const struct tm * tm );
char *asctime_r(const struct tm * tm , char * buf );
char *ctime(const time_t * timep );
char *ctime_r(const time_t * timep , char * buf );
struct tm *gmtime(const time_t * timep );
struct tm *gmtime_r(const time_t * timep , struct tm * result );
struct tm *localtime(const time_t * timep );
struct tm *localtime_r(const time_t * timep , struct tm * result );
time_t mktime(struct tm * tm );
struct tm {
int tm_sec; /* seconds */
int tm_min; /* minutes */
int tm_hour; /* hours */
int tm_mday; /* day of the month */
int tm_mon; /* month */
int tm_year; /* year */
int tm_wday; /* day of the week */
int tm_yday; /* day in the year */
int tm_isdst; /* daylight saving time */
};
long tm_gmtoff; /* Seconds east of UTC */ const char *tm_zone; /* Timezone abbreviation */