repo/core/flex
Dylan Araps 14849c1eb7
repo: check-in readmes
2021-08-26 07:22:10 +03:00
..
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
build flex: update for new env 2021-07-15 12:01:27 +03:00
checksums flex: use new checksum format 2021-07-01 13:50:04 +00:00
depends flex: Make m4 make 2020-03-14 06:31:03 +02:00
sources flex: use VERSION 2021-07-15 09:26:33 +03:00
version flex: Also provide lex 2020-05-29 13:45:19 +03:00

README

flex
________________________________________________________________________________

Flex (fast lexical analyzer generator) is a free and open-source software
alternative to lex. It is a computer program that generates lexical analyzers
(also known as "scanners" or "lexers"). It is frequently used as the lex
implementation together with Berkeley Yacc parser generator on BSD-derived
operating systems (as both lex and yacc are part of POSIX), or together with GNU
bison (a version of yacc) in *BSD ports and in Linux distributions. Unlike
Bison, flex is not part of the GNU Project and is not released under the GNU
General Public License, although a manual for Flex was produced and published by
the Free Software Foundation. [0]



[000] Index
________________________________________________________________________________

* Installation ........................................................... [001]
* Usage .................................................................. [002]
* References ............................................................. [003]


[001] Installation
________________________________________________________________________________

+------------------------------------------------------------------------------+
|                                                                              |
|  $ kiss b flex                                                               |
|                                                                              |
+------------------------------------------------------------------------------+


[003] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[005] References
________________________________________________________________________________

[0] https://en.wikipedia.org/wiki/Flex_(lexical_analyser_generator)