exercism/c/leap/leap.h

9 lines
87 B
C
Raw Normal View History

2024-06-08 11:24:11 -04:00
#ifndef LEAP_H
#define LEAP_H
#include <stdbool.h>
bool leap_year(int year);
#endif