diff options
author | Heinrich Schuchardt | 2019-05-31 07:21:03 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-05-31 23:27:12 +0200 |
commit | 3c1889e6399a0455bb5056f614be046a0b9cf053 (patch) | |
tree | cd88f4dd22a1bbfbaf64f5b1dfb844fe70e1fa8d /include/rtc.h | |
parent | a248bc805536337317a5cb9777f420c38724dab4 (diff) |
rtc: export rtc_month_days()
Export function rtc_month_days() for reuse in the UEFI subsystem.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/rtc.h')
-rw-r--r-- | include/rtc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/rtc.h b/include/rtc.h index 2c3a5743e30..b255bdc7a33 100644 --- a/include/rtc.h +++ b/include/rtc.h @@ -258,4 +258,12 @@ void rtc_to_tm(u64 time_t, struct rtc_time *time); */ unsigned long rtc_mktime(const struct rtc_time *time); +/** + * rtc_month_days() - The number of days in the month + * + * @month: month (January = 0) + * @year: year (4 digits) + */ +int rtc_month_days(unsigned int month, unsigned int year); + #endif /* _RTC_H_ */ |