00001 #ifndef HYDRODAYSMONTHS_H_ 00002 #define HYDRODAYSMONTHS_H_ 00003 00004 /* 00005 static int daystrm[12] = { 1, 32, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335}; 00006 static int dayendm[12] = {31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365}; 00007 static int daysim[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; 00008 */ 00009 00010 typedef enum 00011 { 00012 Jan = 0, 00013 Feb, 00014 Mar, 00015 Apr, 00016 Jun, 00017 Jul, 00018 Aug, 00019 Sep, 00020 Oct, 00021 Nov, 00022 Dec 00023 } 00024 Month; 00025 00026 int days_in_month( Month ); 00027 int start_of( Month ); 00028 int end_of( Month ); 00029 00030 #endif 00031