crm_time_leapyear  123 include/crm/common/iso8601.h bool crm_time_leapyear(int year);
crm_time_leapyear  163 lib/common/iso8601.c     if (crm_time_leapyear(year)) {
crm_time_leapyear  229 lib/common/iso8601.c     if ((month == 2) && crm_time_leapyear(year)) {
crm_time_leapyear 1571 lib/common/iso8601.c     int ydays = crm_time_leapyear(a_time->years) ? 366 : 365;
crm_time_leapyear 1579 lib/common/iso8601.c         ydays = crm_time_leapyear(a_time->years) ? 366 : 365;
crm_time_leapyear 1588 lib/common/iso8601.c         a_time->days += crm_time_leapyear(a_time->years) ? 366 : 365;