NetBSD/lib/libc/regex
cgd dd7a2bfae8 re_format name fixes from Mark Weaver 1994-04-01 08:46:28 +00:00
..
COPYRIGHT Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
Makefile Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
Makefile.inc Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
README Upgrade regex routines to alpha3.4. 1994-03-22 00:39:48 +00:00
WHATSNEW Upgrade regex routines to alpha3.4. 1994-03-22 00:39:48 +00:00
cclass.h Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
cname.h Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
debug.c Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
debug.ih Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
engine.c Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
engine.ih Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
main.c Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
main.ih Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
mkh Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
re_format.7 re_format name fixes from Mark Weaver 1994-04-01 08:46:28 +00:00
regcomp.c Upgrade regex routines to alpha3.4. 1994-03-22 00:39:48 +00:00
regcomp.ih Update to Henry's Nov 2, 1993 alpha3.2 release. 1993-11-11 02:02:57 +00:00
regerror.c Update to Henry's Nov 2, 1993 alpha3.2 release. 1993-11-11 02:02:57 +00:00
regerror.ih Update to Henry's Nov 2, 1993 alpha3.2 release. 1993-11-11 02:02:57 +00:00
regex.3 re_format name fixes from Mark Weaver 1994-04-01 08:46:28 +00:00
regex.h Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
regex2.h Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
regexec.c Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00
regfree.c Update to Henry's Nov 2, 1993 alpha3.2 release. 1993-11-11 02:02:57 +00:00
split.c Henry Spencer's POSIX.2 compatibile regular expression matching routines. 1993-11-10 23:34:55 +00:00
tests Upgrade regex routines to alpha3.4. 1994-03-22 00:39:48 +00:00
utils.h Upgrade regex routines to alpha3.3. 1994-02-23 21:17:36 +00:00

README

alpha3.4 release.
Thu Mar 17 23:17:18 EST 1994
henry@zoo.toronto.edu

See WHATSNEW for change listing.

installation notes:
--------
Read the comments at the beginning of Makefile before running.

Utils.h contains some things that just might have to be modified on
some systems, as well as a nested include (ugh) of <assert.h>.

The "fake" directory contains quick-and-dirty fakes for some header
files and routines that old systems may not have.  Note also that
-DUSEBCOPY will make utils.h substitute bcopy() for memmove().

After that, "make r" will build regcomp.o, regexec.o, regfree.o,
and regerror.o (the actual routines), bundle them together into a test
program, and run regression tests on them.  No output is good output.

"make lib" builds just the .o files for the actual routines (when
you're happy with testing and have adjusted CFLAGS for production),
and puts them together into libregex.a.  You can pick up either the
library or *.o ("make lib" makes sure there are no other .o files left
around to confuse things).

Main.c, debug.c, split.c are used for regression testing but are not part
of the RE routines themselves.

Regex.h goes in /usr/include.  All other .h files are internal only.
--------