mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-17 19:06:36 +00:00
15 lines
177 B
C
15 lines
177 B
C
/*
|
|
* ctime_r.c
|
|
*/
|
|
|
|
#include <time.h>
|
|
|
|
char *
|
|
ctime_r (const time_t * tim_p,
|
|
char * result)
|
|
|
|
{
|
|
struct tm tm;
|
|
return asctime_r (localtime_r (tim_p, &tm), result);
|
|
}
|