mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
9 lines
87 B
C
9 lines
87 B
C
|
#ifndef LEAP_H
|
||
|
#define LEAP_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
bool leap_year(int year);
|
||
|
|
||
|
#endif
|