diff options
Diffstat (limited to 'src/time/gmtime_s.c')
-rw-r--r-- | src/time/gmtime_s.c | 26 |
1 files changed, 26 insertions, 0 deletions
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) +*/ |