mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
22 lines
340 B
C
22 lines
340 B
C
![]() |
/*
|
||
|
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/HashMap.h>
|
||
|
#include <AK/Optional.h>
|
||
|
#include <AK/StringView.h>
|
||
|
|
||
|
namespace Unicode {
|
||
|
|
||
|
struct CurrencyCode {
|
||
|
Optional<int> minor_unit {};
|
||
|
};
|
||
|
|
||
|
Optional<CurrencyCode> get_currency_code(StringView currency);
|
||
|
|
||
|
}
|