qserver.h
// $Id: qserver.h,v 1.2 2002/03/28 19:51:35 vickery Exp $
/* Header file for the qserver module of the qsh project.
*
* C. Vickery
* CS-701 Spring 2002
*
* $Log: qserver.h,v $
* Revision 1.2 2002/03/28 19:51:35 vickery
* Changed prototype for closeLog(): It takes a string argument.
*
* Revision 1.1 2002/03/23 04:56:33 vickery
* Initial revision
*
*/
#ifndef __QSERVER_H__
#define __QSERVER_H__
// Common header files
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
// Log File function prototypes
// ------------------------------------------------------------------
int openLog( const char *filename, const char *msg, bool overwrite );
int writeLog( const char *event_name, const char * msg );
void closeLog( const char * msg );
#endif