blob: 54b1461f65a9664995808c751e7e92275f49a306 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include <time.h>
#include "_safety.h"
/** convert arithmetic time to borken down time **/
struct tm * gmtime_s(const time_t * restrict timer, struct tm * restrict result)
{
/* TODO */
SIGNAL_SAFE(0);
(void)timer; (void)result;
return NULL;
}
CHECK_2(struct tm *, NULL, gmtime_s, const time_t * restrict, struct tm * restrict)
/***
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)
*/
|