mktime.c\time\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/time/mktime.c
blob: 858cd50d012bfacd0aabf735e35d956a51e4967b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <time.h>
#include "__time.h"
time_t mktime(struct tm *tm)
{
	int isdst = tm->tm_isdst;
	time_t t, lt;
	__tzset();
	tm->tm_sec += __timezone;
	if (isdst > 0) tm->tm_sec += __dst_offset;
	t = __tm_to_time(tm);
	
	lt = t - __timezone;
	if (isdst > 0) lt -= __dst_offset;
	__time_to_tm(lt, tm);
	__dst_adjust(tm);
	
	return t;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月30日 07:58:30 +0000

AltStyle によって変換されたページ (->オリジナル) /