Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
time
asctime.c
pretty
plain
permalink
blame
history
•
7 lines
•
110 B
1
#include <time.h>
2
3
char *asctime(const struct tm *tm)
4
{
5
	static char buf[26];
6
	return __asctime_r(tm, buf);
7
}