Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/**
* @brief Idenfies if a given year is a leap year or not.
*
* Does not deal with all the issues surrounding Julian or Coptic calendar
* systems or with historic changes to the calendar.
*
* @param year Year to check.
* @return true if the year is a leap year.
* @return false if the year is not a leap year.
*/