mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
21 lines
353 B
C++
21 lines
353 B
C++
/*
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Optional.h>
|
|
#include <AK/Span.h>
|
|
#include <AK/StringView.h>
|
|
|
|
namespace Unicode {
|
|
|
|
struct CurrencyCode {
|
|
Optional<int> minor_unit {};
|
|
};
|
|
|
|
Optional<CurrencyCode const&> get_currency_code(StringView currency);
|
|
|
|
}
|