Declaration of W3C Reference Library UTILITIES

/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
The Utility modules are mostly container modules, dynamic strings and otherstuff that you can't live without when building applications. The modules are used by the core part of the W3C Reference Library but can also be used by the application. See also the main Library include file called WWWLib.h which contains all converters and protocol modules known to the Library. You can include this one if the application is to use all the functionality of the Library.
#ifndef WWWUTIL_H
#define WWWUTIL_H

System dependencies

#include "tcp.h"

Library Includes

#ifdef __cplusplus
extern "C" { 
#endif
#include "HTUtils.h"			/* Macros and other stuff */
#include "HTArray.h"			/* Dynamic arrays */
#include "HTAssoc.h"			/* Associated lists */
#include "HTAtom.h"			/* Pointer referenced strings */
#include "HTChunk.h"			/* Dynamic strings */
#include "HTList.h"			/* Linked lists */
#include "HTString.h"			/* Generic string utilities */
#include "HTUU.h"			/* uuencode/uudecode */
End of utility modules
#ifdef __cplusplus
} /* end extern C definitions */
#endif

#endif
End of WWWUtil.h declaration