mirror of
https://gitee.com/uYuToo/jcalendar_750C.git
synced 2025-12-06 14:12:48 +08:00
14 lines
199 B
C
14 lines
199 B
C
#ifndef ___HOLIDAY_H__
|
|
#define ___HOLIDAY_H__
|
|
|
|
struct Holiday {
|
|
int year;
|
|
int month;
|
|
int holidays[50];
|
|
int length;
|
|
};
|
|
|
|
bool getHolidays(Holiday& result, int year, int month);
|
|
|
|
#endif
|