mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
b334e6660a
* libc/stdio/local.h (CHECK_INIT): Evaluate argument only once. (CHECK_STD_INIT): Likewise. * libc/stdio/fgetc.c (fgetc): Use local variable for _REENT. * libc/stdio/fgetwc.c (fwgetc): Likewise. * libc/stdio/fgetws.c (fgetws): Likewise. * libc/stdio/fputc.c (fputc): Likewise. * libc/stdio/fputwc.c (fputwc): Likewise. * libc/stdio/fputws.c (fputws): Likewise. * libc/stdio/getc.c (getc): Likewise. * libc/stdio/getchar.c (_getchar_r): Likewise. * libc/stdio/putc.c (putc): Likewise. * libc/stdio/putchar.c (putchar): Likewise. * libc/stdio/scanf.c (scanf): Likewise. * libc/stdio/setvbuf.c (setvbuf): Likewise. * libc/stdio/ungetwc.c (ungetwc): Likewise. * libc/stdio/vfscanf.c (VFSCANF): Likewise. * libc/stdio/vfwscanf.c (VFWSCANF): Likewise. * libc/stdio/viprintf.c (viprintf): Likewise. * libc/stdio/viscanf.c (viscanf): Likewise. * libc/stdio/vprintf.c (vprintf): Likewise. * libc/stdio/vscanf.c (vscanf): Likewise. * libc/stdio/vwprintf.c (vwprintf): Likewise. * libc/stdio/vwscanf.c (vwscanf): Likewise. * libc/stdio/wscanf.c (wscanf): Likewise. * libc/stdlib/ecvtbuf.c (fcvtbuf): Likewise. (fcvtbuf): Likewise. (ecvtbuf): Likewise. (ecvtbuf): Likewise. * libc/stdlib/mblen.c (mblen): Likewise. * libc/stdlib/mbrlen.c (mbrlen): Likewise. * libc/stdlib/mbrtowc.c (mbrtowc): Likewise. * libc/stdlib/mbtowc.c (mbtowc): Likewise. * libc/stdlib/rand.c (srand): Likewise. (rand): Likewise. * libc/stdlib/wcrtomb.c (wcrtomb): Likewise. * libc/stdlib/wctob.c (wctob): Likewise. * libc/stdlib/wctomb.c (wctomb): Likewise. * libc/string/strtok.c (strtok): Likewise. * libc/time/asctime.c (asctime): Likewise. * libc/time/gmtime.c (gmtime): Likewise. * libc/time/lcltime.c (lcltime): Likewise.
67 lines
1.2 KiB
C
67 lines
1.2 KiB
C
/*
|
|
* asctime.c
|
|
* Original Author: G. Haley
|
|
*
|
|
* Converts the broken down time in the structure pointed to by tim_p into a
|
|
* string of the form
|
|
*
|
|
* Wed Jun 15 11:38:07 1988\n\0
|
|
*
|
|
* Returns a pointer to the string.
|
|
*/
|
|
|
|
/*
|
|
FUNCTION
|
|
<<asctime>>---format time as string
|
|
|
|
INDEX
|
|
asctime
|
|
INDEX
|
|
_asctime_r
|
|
|
|
ANSI_SYNOPSIS
|
|
#include <time.h>
|
|
char *asctime(const struct tm *<[clock]>);
|
|
char *_asctime_r(const struct tm *<[clock]>, char *<[buf]>);
|
|
|
|
TRAD_SYNOPSIS
|
|
#include <time.h>
|
|
char *asctime(<[clock]>)
|
|
struct tm *<[clock]>;
|
|
char *asctime_r(<[clock]>)
|
|
struct tm *<[clock]>;
|
|
char *<[buf]>;
|
|
|
|
DESCRIPTION
|
|
Format the time value at <[clock]> into a string of the form
|
|
. Wed Jun 15 11:38:07 1988\n\0
|
|
The string is generated in a static buffer; each call to <<asctime>>
|
|
overwrites the string generated by previous calls.
|
|
|
|
RETURNS
|
|
A pointer to the string containing a formatted timestamp.
|
|
|
|
PORTABILITY
|
|
ANSI C requires <<asctime>>.
|
|
|
|
<<asctime>> requires no supporting OS subroutines.
|
|
*/
|
|
|
|
#include <time.h>
|
|
#include <_ansi.h>
|
|
#include <reent.h>
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
char *
|
|
_DEFUN (asctime, (tim_p),
|
|
_CONST struct tm *tim_p)
|
|
{
|
|
struct _reent *reent = _REENT;
|
|
|
|
_REENT_CHECK_ASCTIME_BUF(reent);
|
|
return asctime_r (tim_p, _REENT_ASCTIME_BUF(reent));
|
|
}
|
|
|
|
#endif
|