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

19 lines
347 B
C
Raw Normal View History

#ifndef FONTBIDI_H
#define FONTBIDI_H
#include <stdint.h>
namespace font
{
void bidi_init(void);
void bidi_destroy(void);
bool is_directional_character(uint32_t codepoint);
bool is_joiner(uint32_t codepoint);
bool bidi_should_transform(const char* text);
const char* bidi_transform(const char* text);
} // namespace font
#endif // FONTBIDI_H