[3031] | 1 | This is flex, the fast lexical analyzer generator.
|
---|
| 2 |
|
---|
| 3 | flex is a tool for generating scanners: programs which recognize
|
---|
| 4 | lexical patterns in text.
|
---|
| 5 |
|
---|
| 6 | More information about flex as well as the latest official release of
|
---|
| 7 | flex can be found at:
|
---|
| 8 |
|
---|
| 9 | http://flex.sourceforge.net/
|
---|
| 10 |
|
---|
| 11 | Of particular interest is the mailing list
|
---|
| 12 | flex-announce@lists.sourceforge.net as that is where posts will be made
|
---|
| 13 | announcing new releases of flex.
|
---|
| 14 |
|
---|
| 15 | Note that flex is distributed under a copyright very similar to that of
|
---|
| 16 | BSD Unix, and not under the GNU General Public License (GPL).
|
---|
| 17 |
|
---|
| 18 | This file is part of flex.
|
---|
| 19 |
|
---|
| 20 | This code is derived from software contributed to Berkeley by
|
---|
| 21 | Vern Paxson.
|
---|
| 22 |
|
---|
| 23 | The United States Government has rights in this work pursuant
|
---|
| 24 | to contract no. DE-AC03-76SF00098 between the United States
|
---|
| 25 | Department of Energy and the University of California.
|
---|
| 26 |
|
---|
| 27 | Redistribution and use in source and binary forms, with or without
|
---|
| 28 | modification, are permitted provided that the following conditions
|
---|
| 29 | are met:
|
---|
| 30 |
|
---|
| 31 | 1. Redistributions of source code must retain the above copyright
|
---|
| 32 | notice, this list of conditions and the following disclaimer.
|
---|
| 33 | 2. Redistributions in binary form must reproduce the above copyright
|
---|
| 34 | notice, this list of conditions and the following disclaimer in the
|
---|
| 35 | documentation and/or other materials provided with the distribution.
|
---|
| 36 |
|
---|
| 37 | Neither the name of the University nor the names of its contributors
|
---|
| 38 | may be used to endorse or promote products derived from this software
|
---|
| 39 | without specific prior written permission.
|
---|
| 40 |
|
---|
| 41 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
---|
| 42 | IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
---|
| 43 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
---|
| 44 | PURPOSE.
|
---|
| 45 |
|
---|
| 46 | Please send bug reports and feedback to flex-help@lists.sourceforge.net.
|
---|
| 47 |
|
---|
| 48 | The flex distribution contains the following files which may be of interest:
|
---|
| 49 |
|
---|
| 50 | README - This file.
|
---|
| 51 |
|
---|
| 52 | NEWS - current version number and list of user-visible changes.
|
---|
| 53 |
|
---|
| 54 | INSTALL - basic installation information.
|
---|
| 55 |
|
---|
| 56 | ABOUT-NLS - description of internationalization support in flex.
|
---|
| 57 |
|
---|
| 58 | COPYING - flex's copyright and license.
|
---|
| 59 |
|
---|
| 60 | doc/ - user documentation.
|
---|
| 61 |
|
---|
| 62 | examples/ - containing examples of some possible flex scanners and a
|
---|
| 63 | few other things. See the file examples/README for more details.
|
---|
| 64 |
|
---|
| 65 | TODO - outstanding bug reports, desired features, etc.
|
---|
| 66 |
|
---|
| 67 | tests/ - regression tests. See TESTS/README for details.
|
---|
| 68 |
|
---|
| 69 | po/ - internationalization support files.
|
---|