tldr/pages/common/lex.md

13 lines
250 B
Markdown
Raw Normal View History

2017-12-11 13:57:43 +00:00
# lex
> Lexical analyser generator.
> Given a lexical analyser, generates C code implementing it.
- Generate analyser from Lex file:
2017-12-11 13:57:43 +00:00
2017-12-11 14:00:29 +00:00
`lex {{path/to/example.l}}`
2017-12-11 13:57:43 +00:00
- Compile a C file generated by lex:
2017-12-11 13:57:43 +00:00
2017-12-11 14:08:17 +00:00
`cc {{path/to/lex.yy.c}} --output {{example}}`