/* * ctime - convers the calendar time to a string */ /* $Header$ */ #include char * ctime(const time_t *timer) { return asctime(localtime(timer)); }