home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / developer / flex.2.5.2.README < prev    next >
Encoding:
Text File  |  1996-03-06  |  699 b   |  13 lines

  1. flex - GNU's fast lexical analyzer generator
  2.  
  3.    `flex' is a tool for generating "scanners": programs which
  4. recognized lexical patterns in text.  `flex' reads the given input
  5. files, or its standard input if no file names are given, for a
  6. description of a scanner to generate.  The description is in the form
  7. of pairs of regular expressions and C code, called "rules". `flex'
  8. generates as output a C source file, `lex.yy.c', which defines a
  9. routine `yylex()'.  This file is compiled and linked with the `-lfl'
  10. library to produce an executable.  When the executable is run, it
  11. analyzes its input for occurrences of the regular expressions.
  12. Whenever it finds one, it executes the corresponding C code.
  13.