/* ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. */This module maintaines logs of request to a file.
This module is implemented by HTLog.c, and it is a part of the W3C Sample Code Library.
#ifndef HTLIBLOG_H #define HTLIBLOG_H #include "HTReq.h"
local
.
extern BOOL HTLog_open (const char * filename, BOOL local, BOOL append);
extern BOOL HTLog_close (void);
extern BOOL HTLog_isOpen (void);
extern BOOL HTLog_add (HTRequest * request, int status); #endif