mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-01 06:23:35 +01:00
16 lines
306 B
C
16 lines
306 B
C
#ifndef _INTERNALS_TIME_H
|
|
#define _INTERNALS_TIME_H 1
|
|
|
|
/*
|
|
isLeap()
|
|
Determines whether the given year is a leap year.
|
|
*/
|
|
int isLeap(int year);
|
|
|
|
/*
|
|
daysInMonth()
|
|
Returns number of days for the given month (between 0 and 11) and year.
|
|
*/
|
|
int daysInMonth(int month, int year);
|
|
|
|
#endif // _INTERNALS_TIME_H
|