diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-12-27 16:22:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 16:22:00 -0600 |
commit | 6b611a3046a694d3972f2aa4df90d3ef78801217 (patch) | |
tree | 05f295c00cbbc1d5987a05da37e746fb841d4d83 /libc/time/ctime.c | |
parent | 58c860d6c48324eba66dd19540db5584d832cf58 (diff) | |
parent | d88495e3f4061a411e654c7307aa94ac8a98c94b (diff) |
Merge pull request #13 from ProjectRevoTPP/libc
add libc building to agbcc.
Diffstat (limited to 'libc/time/ctime.c')
-rw-r--r-- | libc/time/ctime.c | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/libc/time/ctime.c b/libc/time/ctime.c new file mode 100644 index 0000000..e8ccc14 --- /dev/null +++ b/libc/time/ctime.c @@ -0,0 +1,52 @@ +/* + * ctime.c + * Original Author: G. Haley + */ + +/* +FUNCTION +<<ctime>>---convert time to local and format as string + +INDEX + ctime + +ANSI_SYNOPSIS + #include <time.h> + char *ctime(time_t <[clock]>); + char *ctime_r(time_t <[clock]>, char *<[buf]>); + +TRAD_SYNOPSIS + #include <time.h> + char *ctime(<[clock]>) + time_t <[clock]>; + char *ctime_r(<[clock]>, <[buf]>) + time_t <[clock]>; + 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 |