summaryrefslogtreecommitdiff
path: root/Kernel/RTC.h
blob: 3ae5a441a5fd6aea201c0b6d4061a5900a970fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);

}