mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
245 B
245 B
lex
Lexical analyser generator. Given a lexical analyser, generates C code implementing it.
- Generate analyser from Lex file.
lex {{path/to/example.l}}
- Compile a C file generated by lex.
gcc {{path/to/lex.yy.c}} -o {{example}}