Search | Google it | Results 1 - 1 of 1 for funcall:isleap from t2ex/t2ex_source/t2ex/datetime/src/strptime.c (0.00 seconds) |
304: for (i = 0; i < tm->tm_mon; i++) { 305: tm->tm_yday += (i == 1 && isleap(tm->tm_year + 1900)) ? 29 : _dt_mdays[i]; 306: } 310: for (i = 0; i < tm->tm_mon; i++) { 311: t = (i == 1 && isleap(tm->tm_year + 1900)) ? 29 : _dt_mdays[i]; 312: if (tm->tm_mday < t) break;