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