Searched refs:IS_LEAP_YEAR (Results 1 – 2 of 2) sorted by relevance
597 if (Time->Month == 2 && IS_LEAP_YEAR (Time->Year)) { in FatIsValidTime()
79 #define IS_LEAP_YEAR(a) (((a) % 4 == 0) && (((a) % 100 != 0) || ((a) % 400 == 0))) macro