flex-desc.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <sect2><title>Contents of Flex-&flex-contversion;</title>
  2. <sect3><title>Program Files</title>
  3. <para>flex, flex++ (link to flex) and lex</para></sect3>
  4. <sect3><title>Descriptions</title>
  5. <sect4><title>flex</title>
  6. <para>flex is a tool for generating programs which recognize
  7. patterns in text. Pattern recognition is very useful in many applications.
  8. A user sets up rules
  9. what to look for and flex will make a program that looks for those
  10. patterns. The reason people use flex is that it is much easier to sets up
  11. rules for what to look for than to write the actual program that finds
  12. the text.</para></sect4>
  13. <sect4><title>flex++</title>
  14. <para>flex++ invokes a version of flex which is used exclusively for
  15. C++ scanners.</para></sect4>
  16. <sect4><title>lex</title>
  17. <para>We create a bash script called lex which calls flex using the -l option.
  18. This is for compatibility purposes for programs which use lex instead
  19. of flex.</para></sect4>
  20. </sect3>
  21. <sect3><title>Library Files</title>
  22. <para>libfl.a</para></sect3>
  23. <sect3><title>Descriptions</title>
  24. <sect4><title>libfl</title>
  25. <para>No description is currently available.</para></sect4>
  26. </sect3>
  27. </sect2>