#converter #tibetan #localization #ewts

ewts-c

Converter from EWTS (Extended Wylie Transliteration Scheme) to Tibetan Unicode symbols (c lib)

1 unstable release

0.1.0 Dec 11, 2024

#1399 in Text processing

Download history 137/week @ 2024-12-11 3/week @ 2024-12-18

140 downloads per month

MIT/Apache

51KB
951 lines

ewts-c

A little wrapper around core rust EWTS conversion library, usable in C/C++/Cython code. Or anywhere a C-code can be called. See example and test code. Also see for details here.

It is a part of set of apps/libs called ewts-rs. See more here


lib.rs:

A little wrapper around core rust ewts conversion library, usable in C/C++/Cython code. Or anywhere a C-code can be called. See example and test code. Also see for details here.

It is part of set of apps/libs called ewts-rs.

See more here

Example

// some C++ file
// ...
uintptr_t converter_ptr = create_ewts_converter();

const char * converted_str = ewts_to_unicode(converter_ptr, "rgyu ");
// "རྒྱུ་"
// ...

Dependencies

~0–1.4MB
~19K SLoC