2000-02-17 19:39:52 +00:00
|
|
|
/*
|
|
|
|
* ctime_r.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
char *
|
|
|
|
_DEFUN (ctime_r, (tim_p, result),
|
2017-12-03 19:31:41 -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);
|
|
|
|
}
|