month             121 include/crm/common/iso8601.h int crm_time_days_in_month(int month, int year);
month             224 lib/common/iso8601.c crm_time_days_in_month(int month, int year)
month             226 lib/common/iso8601.c     if ((month < 1) || (month > 12) || (year < 1)) {
month             229 lib/common/iso8601.c     if ((month == 2) && crm_time_leapyear(year)) {
month             230 lib/common/iso8601.c         month = 13;
month             232 lib/common/iso8601.c     return month_days[month - 1];
month             896 lib/common/iso8601.c     uint32_t month = 0U;
month             933 lib/common/iso8601.c                 &year, &month, &day);
month             937 lib/common/iso8601.c                     &year, &month, &day);
month             940 lib/common/iso8601.c         if ((month < 1U) || (month > 12U)) {
month             943 lib/common/iso8601.c                     date_str, month);
month             951 lib/common/iso8601.c                    || (day > crm_time_days_in_month(month, year))) {
month             958 lib/common/iso8601.c             dt->days = get_ordinal_days(year, month, day);