/// \page generate Generating Code for the C Target
///
/// \section generate Generating C
///
/// Before discussing how we compile or call the generated C code, we need to know how to invoke the C code generator.
/// This is achieved within the grammar file itself, using the language option:
///
/// \verbatim
options { language = C;}
\endverbatim
///
/// The code generator consists of a single .java file within the standard ANTLR tool jar, and a code generation template,
/// used by the StringTemplate engine, which drives code generation for all language targets. In fact you can make copies of the C.stg
/// and AST.stg templates and make changes to them (though you are encouraged not to, as it is better to provide bug fixes or
/// enhancements which we are happy to receive requests for and will do out best to incorporate.
///
/// If you are working in the Windows environment, with Visual Studio 2005 or later, you may wish to utilize the custom rulefile
/// provided in the C source code distribution under the ./vs2005
directory for this purpose. If you are using a pre-built
/// library then you can also download this rule file directly from the FishEye source code browser for ANTLR3.
///
/// In order to use the rulefile, you must adopt the following suffixes for your grammar files, though they are otherwise optional:
///
///
Suffix | ///Grammar should contain... | ///
---|---|
.g3l | ///A lexer grammar specification only. | ///
.g3p | ///A parser grammar specification only. | ///
.g3pl | ///A combined lexer and parser specification. | ///
.g3t | ///A tree grammar specification. | ///