1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 17:25:06 +00:00

LibUnicode: Parse and generate per-locale plural ranges

This commit is contained in:
Timothy Flynn 2022-07-11 10:58:48 -04:00 committed by Linus Groh
parent a718c62c01
commit a337b059dd
3 changed files with 113 additions and 11 deletions

View file

@ -40,4 +40,9 @@ Span<PluralCategory const> __attribute__((weak)) available_plural_categories(Str
return categories.span();
}
PluralCategory __attribute__((weak)) determine_plural_range(StringView, PluralCategory, PluralCategory)
{
return PluralCategory::Other;
}
}