Reactos
1//
2// days.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// The global _days and _lpdays arrays, which define the number of days that
7// contain the number of days from the beginning of the year to the beginning
8// of each month.
9//
10#include <corecrt_internal_time.h>
11
12
13
14extern "C" int const _days[] =
15{
16 -1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364
17};
18
19
20
21extern "C" int const _lpdays[] =
22{
23 -1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365
24};
25
26