1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

LibUnicode: Generate a method to lookup available keyword values

This commit is contained in:
Timothy Flynn 2022-07-14 14:06:17 -04:00 committed by Andreas Kling
parent c2e5b20eb6
commit 80568d5776
3 changed files with 28 additions and 0 deletions

View file

@ -766,6 +766,7 @@ StringView style_to_string(Style style)
}
}
Span<StringView const> __attribute__((weak)) get_available_keyword_values(StringView) { return {}; }
Span<StringView const> __attribute__((weak)) get_available_calendars() { return {}; }
Span<StringView const> __attribute__((weak)) get_available_collation_case_orderings() { return {}; }
Span<StringView const> __attribute__((weak)) get_available_collation_numeric_orderings() { return {}; }