Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
time
ctime_r.c
pretty
plain
permalink
blame
history
•
7 lines
•
150 B
1
#include <time.h>
2
3
char *ctime_r(const time_t *t, char *buf)
4
{
5
	struct tm tm, *tm_p = localtime_r(t, &tm);
6
	return tm_p ? asctime_r(tm_p, buf) : 0;
7
}