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
- Host: GitHub
- URL: https://github.com/vassilispallas/cparser
- Owner: VassilisPallas
- Created: 2015-03-21T19:36:00.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-21T19:46:40.000Z (about 10 years ago)
- Last Synced: 2025-02-04T01:12:17.302Z (4 months ago)
- Topics: c, cparser, flex, semester-project
- Language: C
- Size: 160 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cparser
a simple parser for C programswrite 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