2024-06-24 10:17:32 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2024-06-25 11:06:08 -04:00
|
|
|
#include <AK/Optional.h>
|
2024-06-24 10:17:32 -04:00
|
|
|
#include <AK/String.h>
|
2024-06-25 11:06:08 -04:00
|
|
|
#include <AK/Vector.h>
|
2024-06-24 10:17:32 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Unicode {
|
|
|
|
|
|
|
|
String current_time_zone();
|
2024-06-25 11:06:08 -04:00
|
|
|
Vector<String> const& available_time_zones();
|
2024-06-25 11:33:26 -04:00
|
|
|
Vector<String> available_time_zones_in_region(StringView region);
|
2024-06-25 11:06:08 -04:00
|
|
|
Optional<String> resolve_primary_time_zone(StringView time_zone);
|
2024-06-24 10:17:32 -04:00
|
|
|
|
|
|
|
}
|