blob: 3ca711df85136c8a61ad99bf6320eb5fa7a15b6f (
plain)
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
|
#include "bu/util.h"
int Bu::getDaysInMonth( int iMonth, int iYear )
{
if( iMonth > 11 )
{
iYear += iMonth/12;
iMonth = iMonth%12;
}
switch( iMonth )
{
case 0:
case 2:
case 4:
case 6:
case 7:
case 9:
case 11:
return 31;
break;
case 3:
case 5:
case 8:
case 10:
return 30;
break;
case 1:
if( iYear%400 == 0 )
return 29;
if( iYear%100 == 0 )
return 28;
if( iYear%4 == 0 )
return 29;
return 28;
break;
}
}
|