mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
c5a00a56c8
This way we don't even need the Clock app anymore. Very cool :^)
13 lines
229 B
C++
13 lines
229 B
C++
#pragma once
|
|
|
|
#include "types.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);
|
|
|
|
}
|
|
|