*: convert en-GB to en-US (#8155)

This commit is contained in:
Seth Falco
2022-06-27 12:23:12 +02:00
committed by GitHub
parent a5933966dd
commit 34fde6d16f
41 changed files with 74 additions and 74 deletions

View File

@@ -1,16 +1,16 @@
# flex
> Lexical analyser generator. Based on `lex`.
> Given the specification for a lexical analyser, generates C code implementing it.
> Lexical analyzer generator. Based on `lex`.
> Given the specification for a lexical analyzer, generates C code implementing it.
> More information: <https://manned.org/flex>.
- Generate an analyser from a flex file:
- Generate an analyzer from a flex file:
`flex {{analyser.l}}`
`flex {{analyzer.l}}`
- Specify the output file:
`flex --outfile {{analyser.c}} {{analyser.l}}`
`flex --outfile {{analyzer.c}} {{analyzer.l}}`
- Compile a C file generated by flex: