mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-15 23:09:05 +00:00
LibTimeZone: Parse ZONE entries from the TZDB and generate their names
This commit is contained in:
parent
41f4a5050c
commit
9253e695d1
Notes:
sideshowbarker
2024-07-17 21:26:46 +09:00
Author: https://github.com/trflynn89
Commit: 9253e695d1
Pull-request: https://github.com/SerenityOS/serenity/pull/11699
Reviewed-by: https://github.com/linusg ✅
5 changed files with 260 additions and 4 deletions
13
Userland/Libraries/LibTimeZone/TimeZone.cpp
Normal file
13
Userland/Libraries/LibTimeZone/TimeZone.cpp
Normal file
|
@ -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 {}; }
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue