mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 18:58:40 +00:00
8 lines
151 B
C
8 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
|