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

}