4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
10 /** @file date_func.h Functions related to dates. */
15 #include "date_type.h"
17 extern Year _cur_year
;
18 extern Month _cur_month
;
20 extern DateFract _date_fract
;
21 extern uint16 _tick_counter
;
23 void SetDate(Date date
, DateFract fract
);
24 void ConvertDateToYMD(Date date
, YearMonthDay
*ymd
);
25 Date
ConvertYMDToDate(Year year
, Month month
, Day day
);
28 * Checks whether the given year is a leap year or not.
29 * @param yr The year to check.
30 * @return True if \c yr is a leap year, otherwise false.
32 static inline bool IsLeapYear(Year yr
)
34 return yr
% 4 == 0 && (yr
% 100 != 0 || yr
% 400 == 0);
37 #endif /* DATE_FUNC_H */