scsh-0.6/scsh/regexp
mainzelm 45f0550f79 replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
..
COPYRIGHT just a snapshot 1999-09-23 14:36:25 +00:00
Makefile just a snapshot 1999-09-23 14:36:25 +00:00
Makefile.in just a snapshot 1999-09-23 14:36:25 +00:00
README just a snapshot 1999-09-23 14:36:25 +00:00
WHATSNEW just a snapshot 1999-09-23 14:36:25 +00:00
cclass.h just a snapshot 1999-09-23 14:36:25 +00:00
cname.h just a snapshot 1999-09-23 14:36:25 +00:00
debug.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
engine.c just a snapshot 1999-09-23 14:36:25 +00:00
engine.ih just a snapshot 1999-09-23 14:36:25 +00:00
main.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
mkh just a snapshot 1999-09-23 14:36:25 +00:00
regcomp.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
regcomp.ih just a snapshot 1999-09-23 14:36:25 +00:00
regerror.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
regerror.ih just a snapshot 1999-09-23 14:36:25 +00:00
regex.3 just a snapshot 1999-09-23 14:36:25 +00:00
regex.7 just a snapshot 1999-09-23 14:36:25 +00:00
regex.h just a snapshot 1999-09-23 14:36:25 +00:00
regex2.h just a snapshot 1999-09-23 14:36:25 +00:00
regexec.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
regfree.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:34:38 +00:00
split.c just a snapshot 1999-09-23 14:36:25 +00:00
tests just a snapshot 1999-09-23 14:36:25 +00:00
utils.h just a snapshot 1999-09-23 14:36:25 +00:00

README

alpha3.7 release.
Fri Nov 21 13:25:21 EST 1997
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.
--------