1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +00:00

LibUnicode: Parse Unicode CLDR currencies and generate locale mappings

This commit is contained in:
Timothy Flynn 2021-08-26 08:38:54 -04:00 committed by Linus Groh
parent 297db925fc
commit 8b93d51212
3 changed files with 70 additions and 9 deletions

View file

@ -43,5 +43,6 @@ bool is_locale_available(StringView locale);
Optional<StringView> get_locale_language_mapping(StringView locale, StringView language);
Optional<StringView> get_locale_territory_mapping(StringView locale, StringView territory);
Optional<StringView> get_locale_script_mapping(StringView locale, StringView script);
Optional<StringView> get_locale_currency_mapping(StringView locale, StringView currency);
}