Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thantthet/MyanmarParser-C

A C implementation to break down (currently only) Burmese syllable
https://github.com/thantthet/MyanmarParser-C

Last synced: about 2 months ago
JSON representation

A C implementation to break down (currently only) Burmese syllable

Awesome Lists containing this project

README

        

# MyanmarParser-C
This is the C version of https://github.com/thanlwinsoft/MyanmarParser

## Usage

```C
const uint16 *text = "myanmar text"
int offset = 0;
while (1) {
int breakType;
int next_offset = get_next_syllable(text, (int)string.length, offset, &breakType);
offset = next_offset;
if (breakType == MY_PAIR_EOL) {
break;
}
}
```