Saturday, June 10, 2017

Parsing Expression Grammars

Parsing Expressions Grammar PEG are a (no longer so) new approach to parsing. Clibutl offers a set of functions to write parsers in C without having to use an external "parser generator". Rather than a dry list of functions, I'll present here a short tutorial on how to build a simple parser. The...