diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-12-28 12:53:53 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-08 12:45:34 +0100 |
commit | 9253e695d129ca28b570a4fdebabb8e25433c2da (patch) | |
tree | 2531b14e31a9de6f4799d000264aa9b52ca9dce3 /Userland/Libraries/LibTimeZone/TimeZone.cpp | |
parent | 41f4a5050c80b738c45808b855be401ecff36d80 (diff) | |
download | serenity-9253e695d129ca28b570a4fdebabb8e25433c2da.zip |
LibTimeZone: Parse ZONE entries from the TZDB and generate their names
Diffstat (limited to 'Userland/Libraries/LibTimeZone/TimeZone.cpp')
-rw-r--r-- | Userland/Libraries/LibTimeZone/TimeZone.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Userland/Libraries/LibTimeZone/TimeZone.cpp b/Userland/Libraries/LibTimeZone/TimeZone.cpp new file mode 100644 index 0000000000..479aad1ddf --- /dev/null +++ b/Userland/Libraries/LibTimeZone/TimeZone.cpp @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2022, Tim Flynn <trflynn89@pm.me> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#include <LibTimeZone/TimeZone.h> + +namespace TimeZone { + +Optional<TimeZone> __attribute__((weak)) time_zone_from_string(StringView) { return {}; } + +} |