Skip to content

fauzanzaid/LL1-Parser-in-C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LL1-Parser-in-C

An implemention of an LL1 Parser in C

Building

First, download the dependencies:

./download_dependencies.sh

Then, to build the static library, run the following commands from the terminal:

mkdir build ; cd build && cmake .. && make ; cd ..

This will build libParserLL1.a in ./lib directory.

Usage

See include/ParserLL1.h for information about functionality provided by this module