blob: 4329e88364b2c98fd6ab0e52349cb2fe3d36d847 (
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
|
#include <time.h>
#include "_safety.h"
/** convert arithmetic time to broken down time **/
struct tm * localtime_s(const time_t * restrict timer, struct tm * restrict result)
{
SIGNAL_SAFE(0);
(void)timer; (void)result;
return NULL;
}
__check_2(struct tm *, NULL, localtime_s, const time_t * restrict, struct tm * restrict)
/***
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)
*/
|