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

LibTimeZone: Add method to convert a time zone to a string

This commit is contained in:
Timothy Flynn 2022-01-10 12:45:16 -05:00 committed by Linus Groh
parent 14535fb67a
commit 1c2c98ac5d
5 changed files with 51 additions and 2 deletions

View file

@ -9,5 +9,6 @@
namespace TimeZone {
Optional<TimeZone> __attribute__((weak)) time_zone_from_string(StringView) { return {}; }
StringView __attribute__((weak)) time_zone_to_string(TimeZone) { return {}; }
}