| 337 | WARN_UNUSED_RESULT; |
| 338 | |
| 339 | inline bool IsLeapYear(int year) { |
| 340 | return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0); |
| 341 | } |
| 342 | |
| 343 | /// Given the year, month and the day in month calculates the day in year. |
| 344 | int GetDayInYear(int year, int month, int day_in_month); |
no outgoing calls
no test coverage detected