README.rst 386 B

123456789101112
  1. A parser library written in C
  2. ===================================
  3. I want to write a parser library which is easy to maintain.
  4. Expected features:
  5. - Written in a lightweight language, so we need light dependencies. Currently I choose C99.
  6. - Use few third party dependencies, even the standard library.
  7. - Do not handle I/O in the core.
  8. - Support the most common language syntax styles.