From e223e635cc53fa11e473cdbc864eb69a3da5f290 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 15:55:19 -0400 Subject: add skeleton of symbols from C11 LIB_EXT1 --- src/time/localtime_s.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/time/localtime_s.c (limited to 'src/time/localtime_s.c') 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) +*/ -- cgit v1.2.1