Searched defs:isleap (Results 1 – 7 of 7) sorted by relevance
57 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
41 #define isleap(y) ((((y) % 4) == 0) && \ macro
57 #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) macro
63 isleap(y) in isleap() function
155 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
79 #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) macro
166 isleap(int y) in isleap() function