crm_time_leapyear  117 include/crm/common/iso8601.h bool crm_time_leapyear(int year);
crm_time_leapyear  153 lib/common/iso8601.c     if (crm_time_leapyear(year)) {
crm_time_leapyear  219 lib/common/iso8601.c     if ((month == 2) && crm_time_leapyear(year)) {
crm_time_leapyear 1439 lib/common/iso8601.c     int ydays = crm_time_leapyear(a_time->years) ? 366 : 365;
crm_time_leapyear 1447 lib/common/iso8601.c         ydays = crm_time_leapyear(a_time->years) ? 366 : 365;
crm_time_leapyear 1456 lib/common/iso8601.c         a_time->days += crm_time_leapyear(a_time->years) ? 366 : 365;