Annotation of libwww/Library/src/WWWUtil.html, revision 2.4

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3: <TITLE>Declaration of W3C Reference Library UTILITIES</TITLE>
2.4     ! frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen,  9-Feb-1996 -->
2.1       frystyk     5: <NEXTID N="z11">
                      6: </HEAD>
                      7: <BODY>
                      8: 
                      9: <H1>Declaration of W3C Reference Library UTILITIES</H1>
                     10: 
                     11: <PRE>
                     12: /*
                     13: **     (c) COPYRIGHT MIT 1995.
                     14: **     Please first read the full copyright statement in the file COPYRIGH.
                     15: */
                     16: </PRE>
                     17: 
                     18: The Utility modules are mostly container modules, dynamic strings and
                     19: otherstuff that you can't live without when building applications. The
                     20: modules are used by the core part of the W3C Reference Library but can
                     21: also be used by the application. See also the main Library include
                     22: file called <A HREF="WWWLib.html">WWWLib.h</A> which contains all
                     23: converters and protocol modules known to the Library. You can include
                     24: this one if the application is to use all the functionality of the
                     25: Library.
                     26: 
                     27: <PRE>
                     28: #ifndef WWWUTIL_H
                     29: #define WWWUTIL_H
                     30: </PRE>
                     31: 
                     32: <H2>System dependencies</H2>
                     33: 
                     34: <PRE>
                     35: #include "tcp.h"
                     36: </PRE>
                     37: 
                     38: <H2>Library Includes</H2>
                     39: 
                     40: <PRE>
                     41: #ifdef __cplusplus
                     42: extern "C" { 
                     43: #endif
                     44: </PRE>
                     45: 
                     46: <PRE>
2.3       frystyk    47: #include "HTUtils.h"                   /* Macros and other stuff */
2.2       frystyk    48: #include "HTArray.h"                   /* Dynamic arrays */
2.1       frystyk    49: #include "HTAssoc.h"                   /* Associated lists */
2.2       frystyk    50: #include "HTAtom.h"                    /* Pointer referenced strings */
2.1       frystyk    51: #include "HTChunk.h"                   /* Dynamic strings */
2.2       frystyk    52: #include "HTList.h"                    /* Linked lists */
2.4     ! frystyk    53: #include "HTMemory.h"                  /* Dynamic memory handler */
2.2       frystyk    54: #include "HTString.h"                  /* Generic string utilities */
2.1       frystyk    55: #include "HTUU.h"                      /* uuencode/uudecode */
                     56: </PRE>
                     57: 
                     58: End of utility modules
                     59: 
                     60: <PRE>
                     61: #ifdef __cplusplus
                     62: } /* end extern C definitions */
                     63: #endif
                     64: 
                     65: #endif
                     66: </PRE>
                     67: 
                     68: End of WWWUtil.h declaration
                     69: 
                     70: </BODY>
                     71: </HTML>

Webmaster