Annotation of libwww/Library/src/HTMLGen.html, revision 2.13

2.6       timbl       1: <HTML>
                      2: <HEAD>
2.8       frystyk     3: <TITLE>HTML Generator</TITLE>
                      4: </HEAD>
2.6       timbl       5: <BODY>
2.8       frystyk     6: 
                      7: <H1>HTML generator</H1>
                      8: 
2.9       frystyk     9: <PRE>
                     10: /*
2.13    ! frystyk    11: **     (c) COPYRIGHT MIT 1995.
2.9       frystyk    12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
                     15: 
2.8       frystyk    16: This module converts structed stream into stream.  That is, given a
2.9       frystyk    17: stream to write to, it will give you a structured stream to. <P>
                     18: 
                     19: This module is implemented by <A HREF="HTMLGen.c">HTMLGen.c</A>, and it is
                     20: a part of the <A
2.12      frystyk    21: HREF="http://www.w3.org/hypertext/WWW/Library/User/Guide/Guide.html">
2.9       frystyk    22: Library of Common Code</A>.
2.8       frystyk    23: 
                     24: <PRE>
                     25: #ifndef HTMLGEN_H
2.1       timbl      26: #define HTMLGEN_H
                     27: 
                     28: #include "HTML.h"
                     29: #include "HTStream.h"
                     30: 
2.8       frystyk    31: /* Special Creation: */
2.1       timbl      32: extern HTStructured * HTMLGenerator PARAMS((HTStream * output));
                     33: 
2.11      frystyk    34: #ifndef pyramid
2.7       timbl      35: extern HTConverter HTPlainToHTML;
2.8       frystyk    36: #endif
2.1       timbl      37: 
                     38: #endif
2.11      frystyk    39: </PRE>
                     40: </BODY>
2.6       timbl      41: </HTML>

Webmaster