2000-02-17 19:39:52 +00:00
|
|
|
/*
|
|
|
|
* ctime_r.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
char *
|
|
|
|
_DEFUN (ctime_r, (tim_p, result),
|
2017-12-03 20:25:16 -06:00
|
|
|
const time_t * tim_p,
|
2000-02-17 19:39:52 +00:00
|
|
|
char * result)
|
|
|
|
|
|
|
|
{
|
|
|
|
struct tm tm;
|
|
|
|
return asctime_r (localtime_r (tim_p, &tm), result);
|
|
|
|
}
|