mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 19:15:07 +00:00
14 lines
331 B
C++
14 lines
331 B
C++
/*
|
|
* 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 {}; }
|
|
StringView __attribute__((weak)) time_zone_to_string(TimeZone) { return {}; }
|
|
|
|
}
|