mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
9 lines
151 B
C
9 lines
151 B
C
#ifndef RTC_H
|
|
#define RTC_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void rtc_get_datetime(int *year, int *month, int *day, int *hour, int *minute, int *second);
|
|
|
|
#endif
|