blob: 36029315128f250a86264447ee20a95bd7f366b7 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <time.h>
2
3char *ctime(const time_t *t)
4{
Rich Felker5c10c332017-06-15 12:58:08 -04005 struct tm *tm = localtime(t);
6 if (!tm) return 0;
7 return asctime(tm);
Rich Felker0b44a032011-02-12 00:22:29 -05008}