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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
/* localtime_s( const time_t *, struct tm * )
This file is part of the Public Domain C Library (PDCLib).
Permission is granted to use, modify, and / or redistribute at will.
*/
#define __STDC_WANT_LIB_EXT1__ 1
#include <stdint.h>
#include <stdlib.h>
#include <time.h>
#ifndef REGTEST
#include "pdclib/_PDCLIB_tzcode.h"
struct tm * localtime_s( const time_t * _PDCLIB_restrict timer, struct tm * _PDCLIB_restrict result )
{
if ( timer == NULL || result == NULL )
{
_PDCLIB_constraint_handler( _PDCLIB_CONSTRAINT_VIOLATION( _PDCLIB_EINVAL ) );
return NULL;
}
return _PDCLIB_localtime_tzset( timer, result, true );
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
#ifndef REGTEST
time_t t;
struct tm time;
/* TODO: Constraint handling, System Clock DST */
t = -2147483648l;
TESTCASE( localtime_s( &t, &time ) != NULL );
TESTCASE( time.tm_sec == 52 );
TESTCASE( time.tm_min == 45 );
TESTCASE( time.tm_hour == 21 );
TESTCASE( time.tm_mday == 13 );
TESTCASE( time.tm_mon == 11 );
TESTCASE( time.tm_year == 1 );
TESTCASE( time.tm_wday == 5 );
TESTCASE( time.tm_yday == 346 );
t = 2147483647l;
TESTCASE( localtime_s( &t, &time ) != NULL );
TESTCASE( time.tm_sec == 7 );
TESTCASE( time.tm_min == 14 );
TESTCASE( time.tm_hour == 4 );
TESTCASE( time.tm_mday == 19 );
TESTCASE( time.tm_mon == 0 );
TESTCASE( time.tm_year == 138 );
TESTCASE( time.tm_wday == 2 );
TESTCASE( time.tm_yday == 18 );
#endif
return TEST_RESULTS;
}
#endif
|