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
|
/***
*days.c - static arrays with days from beg of year for each month
*
* Copyright (c) 1985-1991, Microsoft Corporation. All rights reserved.
*
*Purpose:
* contains static arrays used by gmtime and statconv to determine
* date and time values. Shows days from beg of year.
*
*Revision History:
* 03-??-84 RLB initial version
* 05-??-84 DFW split out definitions from ctime routines
* 07-03-89 PHG removed _NEAR_ for 386
* 03-20-90 GJF Fixed copyright.
*
*******************************************************************************/
#include <internal.h>
int _lpdays[] = {
-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365
};
int _days[] = {
-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364
};
|