p7utils/src/p7os/cake.exe/libgint/include/internals/time.h

17 lines
306 B
C
Raw Normal View History

2019-12-29 22:28:26 +01:00
#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