waxeye-org / waxeye

Waxeye is a parser generator based on parsing expression grammars (PEGs). It supports C, Java, JavaScript, Python, Racket, and Ruby.
https://waxeye-org.github.io/waxeye/index.html
Other
235 stars 38 forks source link

Add Unicode support to the C runtime #50

Open glebm opened 7 years ago

glebm commented 7 years ago

Does not require any external libraries, as getting the next codepoint from a char pointer is trivial.

Will require a new error type returned when the char * sequence is not well-formed UTF-8.

Blocked by #41.