2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
* ctime.c
|
|
|
|
* Original Author: G. Haley
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
FUNCTION
|
|
|
|
<<ctime>>---convert time to local and format as string
|
|
|
|
|
|
|
|
INDEX
|
|
|
|
ctime
|
2008-11-01 05:08:03 +08:00
|
|
|
INDEX
|
|
|
|
ctime_r
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
ANSI_SYNOPSIS
|
|
|
|
#include <time.h>
|
2002-09-25 05:26:45 +08:00
|
|
|
char *ctime(const time_t *<[clock]>);
|
|
|
|
char *ctime_r(const time_t *<[clock]>, char *<[buf]>);
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
TRAD_SYNOPSIS
|
|
|
|
#include <time.h>
|
|
|
|
char *ctime(<[clock]>)
|
2002-09-25 05:26:45 +08:00
|
|
|
time_t *<[clock]>;
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
char *ctime_r(<[clock]>, <[buf]>)
|
2002-09-25 05:26:45 +08:00
|
|
|
time_t *<[clock]>;
|
2000-02-18 03:39:52 +08:00
|
|
|
char *<[buf]>;
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
Convert the time value at <[clock]> to local time (like <<localtime>>)
|
|
|
|
and format it into a string of the form
|
|
|
|
. Wed Jun 15 11:38:07 1988\n\0
|
|
|
|
(like <<asctime>>).
|
|
|
|
|
|
|
|
RETURNS
|
|
|
|
A pointer to the string containing a formatted timestamp.
|
|
|
|
|
|
|
|
PORTABILITY
|
|
|
|
ANSI C requires <<ctime>>.
|
|
|
|
|
|
|
|
<<ctime>> requires no supporting OS subroutines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
|
|
|
|
char *
|
|
|
|
_DEFUN (ctime, (tim_p),
|
|
|
|
_CONST time_t * tim_p)
|
|
|
|
{
|
|
|
|
return asctime (localtime (tim_p));
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|