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/gmtime_s.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/time/gmtime_s.c (limited to 'src/time/gmtime_s.c') diff --git a/src/time/gmtime_s.c b/src/time/gmtime_s.c new file mode 100644 index 00000000..1629a651 --- /dev/null +++ b/src/time/gmtime_s.c @@ -0,0 +1,26 @@ +#include "time.h" + +/** convert arithmetic time to borken down time **/ +struct tm * gmtime_s(const time_t * restrict timer, struct tm * restrict result) +{ + __C_EXT(1, 201112L); + /* TODO */ + return NULL; +} + +/*** +The fn(gmtime) function converts the UTC time at arg(timer) to a filled out +type(struct tm). +***/ + +/* UNSPECIFIED: - */ +/* UNDEFINED: - */ +/* IMPLEMENTATION: - */ +/* LOCALE: - */ + +/* RETURN(NULL): UTC is not available */ +/* RETURN: a pointer to the converted structure */ + +/* +CEXT1(201112) +*/ -- cgit v1.2.1