summaryrefslogtreecommitdiff
path: root/src/time/localtime_s.c
blob: 8a8797fb9e59bbe535267a4dfdaa65de0a001d73 (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
#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)
*/