ReactOS 0.4.16-dev-1078-g21d3e29
days.cpp
Go to the documentation of this file.
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//
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
int const _lpdays[]
Definition: days.cpp:21
int const _days[]
Definition: days.cpp:14