Search | Google it | Results 1 - 2 of 2 for fundef:isleap (0.00 seconds) |
45: #define EPOCH_WDAY 4 46: #define isleap(year) (((((year)) % 4) == 0 && (((year)) % 100) != 0) || (((year)) % 400) == 0) 47: #define _ctloc(x) (_CurrentTimeLocale.x)
76: /* Leap year? */ 77: #define isleap(year) (((year)%4 == 0 && (year)%100 != 0) || (year)%400 == 0) 78: