* Merged newxml into HEAD
[linux_from_scratch.git] / BOOK / appendixa / bison-desc.xml
blobd52e2272dcde14cc12455372127477ebbe0908b8
1 <sect2><title>Short descriptions</title>
3 <para><command>bison</command> generates, from a series of rules, a program
4 for analyzing the structure of text files. Bison is a replacement for yacc
5 (Yet Another Compiler Compiler).</para>
7 <para><command>yacc</command> is a wrapper for bison, meant for programs
8 that still call yacc instead of bison. It calls bison with the -y option.</para>
10 <para><command>liby.a</command> is the Yacc library containing
11 implementations of Yacc-compatible yyerror and main functions. This library
12 is normally not very useful, but POSIX requires it.</para>
14 </sect2>