PackCC icon indicating copy to clipboard operation
PackCC copied to clipboard

PackCC is a packrat parser generator for C.

Results 3 PackCC issues
Sort by recently updated
recently updated
newest added

I've written a grammar but it's failing even on trivial inputs. I've boiled the grammar down to the following simple test case: ``` %prefix "test" property

Fixes https://github.com/Leandros/PackCC/issues/1

The generated parsers don't compile as C++, because of one call that implicitly casts from `void*` to a concrete pointer. It's easy to fix by changing the type-cast from `(void...