diff options
Diffstat (limited to 'src/time/localtime_s.c')
-rw-r--r-- | src/time/localtime_s.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/time/localtime_s.c b/src/time/localtime_s.c new file mode 100644 index 00000000..f8ad731a --- /dev/null +++ b/src/time/localtime_s.c @@ -0,0 +1,25 @@ +#include "time.h" + +/** convert arithmetic time to broken down time **/ +struct tm * localtime_s(const time_t * restrict timer, struct tm * restrict result) +{ + __C_EXT(1, 201112L); + /* TODO */ + return NULL; +} + +/*** +The fn(localtime) function converts the locale time at arg(timer) to a filled +out type(struct tm). +***/ + +/* UNSPECIFIED: - */ +/* UNDEFINED: - */ +/* IMPLEMENTATION: - */ +/* LOCALE: - */ + +/* RETURN: a pointer to the converted object */ + +/* +CEXT1(201112) +*/ |