exercism/c/leap/leap.h

8 lines
87 B
C

#ifndef LEAP_H
#define LEAP_H
#include <stdbool.h>
bool leap_year(int year);
#endif