]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/time/ctime.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / time / ctime.c
1 #include <time.h>
2
3 char *ctime(const time_t *t)
4 {
5 struct tm *tm = localtime(t);
6 if (!tm) return 0;
7 return asctime(tm);
8 }