Exemplo n.º 1
0
char *asctime_r(const struct tm *tm, char *buf)
{
	return __asctime(tm, buf);
}
Exemplo n.º 2
0
char* asctime(const struct tm* tm) {
    static char buf[26];
    return __asctime(tm, buf);
}