Add Arabic reshaping lookup table

This adds the lookup table and an accompanying hashmap that will be
used for reshaping Arabic - it's not yet used though.
This commit is contained in:
Dav999
2024-01-02 05:01:39 +01:00
committed by Misa Elizabeth Kai
parent 59ccdbea00
commit e011273eb3
3 changed files with 200 additions and 0 deletions

View File

@@ -4,6 +4,8 @@
namespace font
{
void bidi_init(void);
void bidi_destroy(void);
bool bidi_should_transform(const char* text);
const char* bidi_transform(const char* text);