41
41
#include "drizzled/calendar.h"
43
46
/** Static arrays for number of days in a month and their "day ends" */
44
47
static const uint32_t __leap_days_in_month[12]= {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
45
48
static const uint32_t __normal_days_in_month[12]= {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};