mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
committed by
Andreas Kling
parent
950e819ee7
commit
93712b24bf
21
Libraries/LibUnicode/DurationFormat.h
Normal file
21
Libraries/LibUnicode/DurationFormat.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/String.h>
|
||||
|
||||
namespace Unicode {
|
||||
|
||||
struct DigitalFormat {
|
||||
String hours_minutes_separator { ":"_string };
|
||||
String minutes_seconds_separator { ":"_string };
|
||||
bool uses_two_digit_hours { false };
|
||||
};
|
||||
|
||||
DigitalFormat digital_format(StringView locale);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user