mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-25 14:20:11 -05:00
12 lines
343 B
C
12 lines
343 B
C
#ifndef NITRO_RTC_CONVERT_H_
|
|
#define NITRO_RTC_CONVERT_H_
|
|
|
|
#include <nitro/types.h>
|
|
#include <nitro/rtc/ARM9/api.h>
|
|
|
|
s64 RTC_ConvertDateTimeToSecond(const RTCDate *date, const RTCTime *time);
|
|
s32 RTC_ConvertDateToDay(const RTCDate *date);
|
|
void RTC_ConvertSecondToDateTime(RTCDate *date, RTCTime *time, s64 sec);
|
|
|
|
#endif //NITRO_RTC_CONVERT_H_
|