gnuregex.dll: Regular Expressions for Win32 Programs
----------------------------------------------------
If you've ever wanted to add regular expressions to
a Win32 program, here's your chance.

This DLL is under the GNU General Public License
(almost all the source for it comes from the regex
library 0.12), so if you distribute a program that
uses it, you must follow the terms detailed in
COPYING.


Notes
-----
Some of the functions of the DLL allocate memory.
You cannot call free(...) in the main program to
free memory allocated in a DLL.  Use
gnuregex_free(...) to do it instead -- it is
nothing more than a wrapper around free(...), but
the call to free(...) is done within the DLL code.


Files Included
--------------
COPYING            The GNU General Public License
README             This file
test.cpp           Source for example program
test.dsp           Microsoft Developer Studio file
test.dsw           Microsoft Developer Studio file
test.exe           Example program executable
gnuregex.dll       The actual DLL
gnuregex.lib       The library for the DLL
gnuregex.h         Header for functions
regex.h            Included by gnuregex.h
dll/*              Source for gnuregex.dll


Contact Information
-------------------
Brad Town <townba@ix.netcom.com>
