mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
939600d2d4
"Wherever applicable" = most places, actually :^), especially for networking and filesystem timestamps. This includes changes to unzip, which uses DOSPackedTime, since that is changed for the FAT file systems.
18 lines
270 B
C++
18 lines
270 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Time.h>
|
|
#include <Kernel/UnixTypes.h>
|
|
|
|
namespace Kernel::RTC {
|
|
|
|
void initialize();
|
|
time_t now();
|
|
UnixDateTime boot_time();
|
|
|
|
}
|