mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 15:05:07 +00:00
13 lines
240 B
C++
13 lines
240 B
C++
#pragma once
|
|
|
|
#include <Kernel/UnixTypes.h>
|
|
|
|
namespace RTC {
|
|
|
|
void initialize();
|
|
time_t now();
|
|
time_t boot_time();
|
|
void read_registers(unsigned& year, unsigned& month, unsigned& day, unsigned& hour, unsigned& minute, unsigned& second);
|
|
|
|
}
|
|
|