mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05: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);
|
|
|
|
}
|
|
|