/* Author: Ram Samudrala (me@ram.org)
 * Version: O1.0
 * Detail: <http://www.ram.org/computing/cgi_common/cgi_common.html>
 * November 22, 1995.
 *
 * See the URL above for terms of use and general help.
 */

#ifndef __CGI_COMMON__
#define __CGI_COMMON__

/******************************************************************/
/* Includes */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <string.h>
#include <strings.h>
#include <sys/signal.h>
#include <time.h>
#include <sys/file.h>

/******************************************************************/
/* Structures */

typedef struct 
{
  char *name;
  char *val;
} entry;

/******************************************************************/
/* Function declarations */

extern int read_entries(entry entries[]);

/******************************************************************/

#endif /* __CGI_COMMON__ */
