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