aboutsummaryrefslogtreecommitdiff
path: root/src/date.c
blob: 84397032561f57da72c30d655e206a9a4f7bff68 (plain)
1
2
3
int isleap(int year) {
    return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}