1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Optional.h>
- #include <AK/String.h>
- #include <AK/Time.h>
- #include <AK/Vector.h>
- #pragma once
- namespace Unicode {
- struct TimeZoneOffset {
- enum class InDST {
- No,
- Yes,
- };
- AK::Duration offset;
- InDST in_dst { InDST::No };
- };
- String current_time_zone();
- Vector<String> const& available_time_zones();
- Vector<String> available_time_zones_in_region(StringView region);
- Optional<String> resolve_primary_time_zone(StringView time_zone);
- Optional<TimeZoneOffset> time_zone_offset(StringView time_zone, UnixDateTime time);
- }
|