mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:38:10 +00:00
18 lines
344 B
C++
18 lines
344 B
C++
/*
|
|
* Copyright (c) 2022, Tim Flynn <trflynn89@pm.me>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Optional.h>
|
|
#include <AK/StringView.h>
|
|
#include <LibTimeZone/Forward.h>
|
|
|
|
namespace TimeZone {
|
|
|
|
Optional<TimeZone> time_zone_from_string(StringView time_zone);
|
|
StringView time_zone_to_string(TimeZone time_zone);
|
|
|
|
}
|