gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 2 of 2 for fundef:isleap (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/time/strptime.c - 28.1KB - 732 lines
45: #define EPOCH_WDAY 4
46: #define isleap(year) (((((year)) % 4) == 0 && (((year)) % 100) != 0) || (((year)) % 400) == 0)
47: #define _ctloc(x) (_CurrentTimeLocale.x)
t2ex_source/t2ex/datetime/src/internal.h - 4.5KB - 156 lines
76: /* Leap year? */
77: #define isleap(year)     (((year)%4 == 0 && (year)%100 != 0) || (year)%400 == 0)
78: