gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:isleap from t2ex/t2ex_source/t2ex/datetime/src/strptime.c (0.00 seconds)
t2ex
t2ex_source/t2ex/datetime/src/strptime.c - 11.7KB - 329 lines
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;