예제 #1
0
파일: asctime_r.c 프로젝트: KGG814/AOS
char *asctime_r(const struct tm *tm, char *buf)
{
	return __asctime(tm, buf);
}
예제 #2
0
파일: asctime.c 프로젝트: saltstar/smartnix
char* asctime(const struct tm* tm) {
    static char buf[26];
    return __asctime(tm, buf);
}