Annotation of libwww/Library/src/WWWHTML.html, revision 2.8

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.8     ! frystyk     3:   <TITLE>W3C Sample Code Library libwww HTML PARSER</TITLE>
2.1       frystyk     4: </HEAD>
                      5: <BODY>
2.8     ! frystyk     6: <H1>
        !             7:   Declaration of W3C Sample Code HTML MODULE
        !             8: </H1>
2.1       frystyk     9: <PRE>
                     10: /*
                     11: **     (c) COPYRIGHT MIT 1995.
                     12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
2.8     ! frystyk    15: <P>
        !            16: This is the include file for the basic HTML module that can be used together
        !            17: with libwww. It contains all HTML specific modules which are required to
        !            18: compile and use the <A HREF="HTML.html">default libwww HTML parser</A>
2.1       frystyk    19: <PRE>
                     20: #ifndef WWWHTML_H
                     21: #define WWWHTML_H
                     22: </PRE>
                     23: <PRE>
                     24: #ifdef __cplusplus
                     25: extern "C" { 
                     26: #endif
                     27: </PRE>
2.8     ! frystyk    28: <H2>
        !            29:   System dependencies
        !            30: </H2>
        !            31: <P>
2.7       frystyk    32: The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
2.8     ! frystyk    33: files and flags for I/O to network and disk. The only reason for this file
        !            34: is that the Internet world is more complicated than Posix and ANSI.
2.1       frystyk    35: <PRE>
2.7       frystyk    36: #include "wwwsys.h"
2.5       frystyk    37: </PRE>
2.8     ! frystyk    38: <H2>
        !            39:   Library Includes
        !            40: </H2>
2.5       frystyk    41: <PRE>
2.8     ! frystyk    42: #include "HText.h"
2.1       frystyk    43: #include "HTMLPDTD.h"
                     44: #include "SGML.h"
                     45: #include "HTMLGen.h"
                     46: #include "HTTeXGen.h"
                     47: </PRE>
2.8     ! frystyk    48: <P>
2.1       frystyk    49: End of HTML module
                     50: <PRE>
                     51: #ifdef __cplusplus
                     52: } /* end extern C definitions */
                     53: #endif
                     54: 
                     55: #endif
                     56: </PRE>
2.8     ! frystyk    57: <P>
        !            58:   <HR>
2.4       frystyk    59: <ADDRESS>
2.8     ! frystyk    60:   @(#) $Id: WWWHTML.html,v 2.7 1998/05/04 19:37:51 frystyk Exp $
2.4       frystyk    61: </ADDRESS>
2.8     ! frystyk    62: </BODY></HTML>

Webmaster