exercism/c/leap/leap.c

15 lines
177 B
C
Raw Normal View History

2024-06-08 11:24:11 -04:00
#include "leap.h"
bool leap_year(int year) {
if (year % 4 != 0) {
return false;
}
if (year % 100 == 0 && year % 400 != 0) {
return false;
}
return true;
}