/* ** _is_leap_year.h ** ** (C) Copyright 2024, Colin Leroy-Mira ** */ #ifndef __IS_LEAP_YEAR_H #define __IS_LEAP_YEAR_H unsigned char __fastcall__ IsLeapYear (unsigned char Year); /* Returns 1 if the given year is a leap year. Expects a year from 0 to 206, * without 1900 added */ /* End of _is_leap_year.h */ #endif