1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibTimeZone: Parse and generate time zone coordinate data

This commit is contained in:
Timothy Flynn 2022-02-02 14:31:05 -05:00 committed by Andreas Kling
parent 7b41a09540
commit ea814a3ce6
4 changed files with 141 additions and 3 deletions

View file

@ -183,4 +183,13 @@ Optional<Array<NamedOffset, 2>> get_named_time_zone_offsets(StringView time_zone
return {};
}
Optional<Location> __attribute__((weak)) get_time_zone_location(TimeZone) { return {}; }
Optional<Location> get_time_zone_location(StringView time_zone)
{
if (auto maybe_time_zone = time_zone_from_string(time_zone); maybe_time_zone.has_value())
return get_time_zone_location(*maybe_time_zone);
return {};
}
}