1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-28 23:48:30 +02:00
VVVVVV/desktop_version/src/FontBidi.h
Dav999 e011273eb3 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.
2024-01-08 19:17:44 -08:00

15 lines
239 B
C++

#ifndef FONTBIDI_H
#define FONTBIDI_H
namespace font
{
void bidi_init(void);
void bidi_destroy(void);
bool bidi_should_transform(const char* text);
const char* bidi_transform(const char* text);
} // namespace font
#endif // FONTBIDI_H