OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc2/] [newlib/] [libc/] [time/] [ctime.c] - Diff between revs 207 and 520

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.