LibUnicode: Generate a list of available numbering systems

This commit is contained in:
Timothy Flynn 2022-01-30 16:46:19 -05:00 committed by Linus Groh
parent ebd33e580b
commit 481ced53d8
Notes: sideshowbarker 2024-07-17 19:57:54 +09:00
3 changed files with 5 additions and 0 deletions

View file

@ -16,6 +16,7 @@
namespace Unicode {
Span<StringView const> __attribute__((weak)) get_available_number_systems() { return {}; }
Optional<NumberSystem> __attribute__((weak)) number_system_from_string(StringView) { return {}; }
Optional<StringView> __attribute__((weak)) get_number_system_symbol(StringView, StringView, NumericSymbol) { return {}; }
Optional<NumberGroupings> __attribute__((weak)) get_number_system_groupings(StringView, StringView) { return {}; }