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