summary refs log tree commit diff stats
path: root/c/leap/src/leap.c
blob: dc99a1006193dd2722dbb4c34f044a58c71e0f19 (plain) (blame)
1
2
3
4
5
#include "leap.h"

bool leap_year(int year) {
    return !(year % 4) && (year % 100 || !(year % 400));
}