1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00
VVVVVV/desktop_version/src/FontBidi.h

15 lines
239 B
C
Raw Normal View History

#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