12 lines
206 B
C
12 lines
206 B
C
#ifndef RTC_TIME_CPP_H
|
|
#define RTC_TIME_CPP_H
|
|
#include <linux/rtc.h>
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
struct rtc_time GetRtcTime(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // !RTC_TIME_CPP_H
|