1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:47:46 +00:00

LibTimeZone: Add methods to canonicalize a time zone name

This commit is contained in:
Timothy Flynn 2022-01-10 12:57:30 -05:00 committed by Linus Groh
parent 1c2c98ac5d
commit e9c42d0bc5
3 changed files with 29 additions and 0 deletions

View file

@ -14,5 +14,6 @@ namespace TimeZone {
Optional<TimeZone> time_zone_from_string(StringView time_zone);
StringView time_zone_to_string(TimeZone time_zone);
Optional<StringView> canonicalize_time_zone(StringView time_zone);
}