1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:17:42 +00:00

LibUnicode: Generate a list of available currencies

This commit is contained in:
Timothy Flynn 2022-01-30 16:51:29 -05:00 committed by Linus Groh
parent 481ced53d8
commit bb0f548614
3 changed files with 7 additions and 0 deletions

View file

@ -8,6 +8,7 @@
#include <AK/HashMap.h>
#include <AK/Optional.h>
#include <AK/Span.h>
#include <AK/StringView.h>
namespace Unicode {
@ -17,5 +18,6 @@ struct CurrencyCode {
};
Optional<CurrencyCode> get_currency_code(StringView currency);
Span<StringView const> get_available_currencies();
}