c10337a63ec248e32584c13f9b7c77488c91e3ad
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS CRT library
4 * FILE: lib/sdk/crt/time/localtime.c
5 * PURPOSE: Implementation of localtime, localtime_s
6 * PROGRAMERS: Timo Kreuzer
10 #include "bitsfixup.h"
13 localtime_s(struct tm
* _tm
, const time_t *ptime
)
16 /* Validate parameters */
19 _invalid_parameter(NULL
,
31 extern char _tz_is_set
;
34 localtime(const time_t *ptime
)
39 /* Check for invalid time value */
49 /* Check for overflow */
51 /* Correct for timezone */
54 /* Correct for daylight saving */