An open API service indexing awesome lists of open source software.

https://github.com/vassilispallas/cparser

a simple parser for C programs
https://github.com/vassilispallas/cparser

c cparser flex semester-project

Last synced: 2 months ago
JSON representation

a simple parser for C programs

Awesome Lists containing this project

README

        

# cparser
a simple parser for C programs

write in terminal: flex parse.l
(this is auto generate a file named lex.yy.c)

then write:
for Linux: gcc lex.yy.c -o parse
, for Windows: gcc lex.yy.c -o parse.exe

(this command will create the executable file named parse)

and then run the program writing in the terminal:
for Linux: ./parse
, for Windows: parse.exe