Author: John-Mark Gurney <gurney_j@efn.org>
Primary-site: http://resnet.uoregon.edu/~gurney_j/jmpc/cgiparse/
Version: 0.9a

This is a library that will allow you to write very easy cgi scripts as this
will parse the query string for you.

It now uses autoconf so you can use the familar ./configure && make &&
make install which should "Do The Right Thing."


INSTALL
=======

If you have the mime library already installed, you can specify the location
with --with-mime=/path to tell configure about it.  You can get the mime
library source from http://resnet.uoregon.edu/~gurney_j/jmpc/mime.html.

1)	./configure && make && make install


USAGE
=====

Fuctions you can call:

const char *cgigetvalue(char *)

	call this function with the name of your input field and it will return
the value of it.


void cgiclose()

	deallocate any memory used and return it to what it was before the
program started.


void cginewquerystr(char *)

	sets your own QUERY_STRING without having to use putenv().  Call it
without the preceeding "QUERY_STRING=".  This is useful for testing your
program with certain input.


Other Sources of Code
=====================

This product includes software developed by the Apache Group
for use in the Apache HTTP server project (http://www.apache.org/).
