/* ctime — время эпохи одной строкой: asctime(localtime(timep)). */ #include char *ctime(time_t *timep) { return asctime(localtime(timep)); }