1 /*                  /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTMLGen.html
2                                       HTML GENERATOR
3 
4    This module converts structed stream into stream.  That is, given a stream
5    to write to, it will give you a structured stream to
6 
7  */
8 #ifndef HTMLGEN_H
9 #define HTMLGEN_H
10 
11 #include <HTML.h>
12 #include <HTStream.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17     extern HTStructured *HTMLGenerator(HTStream *output);
18 
19     extern HTStream *HTPlainToHTML(HTPresentation *pres,
20 				   HTParentAnchor *anchor,
21 				   HTStream *sink);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 #endif				/* HTMLGEN_H */
27