2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-25 15:29:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-04-06 12:29:29 +00:00
|
|
|
#include <Kernel/UnixTypes.h>
|
2018-10-25 15:29:49 +00:00
|
|
|
|
|
|
|
namespace RTC {
|
|
|
|
|
|
|
|
void initialize();
|
|
|
|
time_t now();
|
2019-01-31 16:31:23 +00:00
|
|
|
time_t boot_time();
|
2019-02-13 08:10:32 +00:00
|
|
|
void read_registers(unsigned& year, unsigned& month, unsigned& day, unsigned& hour, unsigned& minute, unsigned& second);
|
2018-10-25 15:29:49 +00:00
|
|
|
|
|
|
|
}
|