crm_time_leapyear  122 include/crm/common/iso8601.h bool crm_time_leapyear(int year);
crm_time_leapyear  129 lib/common/iso8601.c     if (crm_time_leapyear(year)) {
crm_time_leapyear  181 lib/common/iso8601.c     if (month == 2 && crm_time_leapyear(year)) {
crm_time_leapyear 1201 lib/common/iso8601.c     int ydays = crm_time_leapyear(a_time->years) ? 366 : 365;
crm_time_leapyear 1209 lib/common/iso8601.c         ydays = crm_time_leapyear(a_time->years) ? 366 : 365;
crm_time_leapyear 1218 lib/common/iso8601.c         a_time->days += crm_time_leapyear(a_time->years) ? 366 : 365;