scsh-0.5/scsh/regexp
mainzelm 92e4737c44 replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
..
.gitignore Added some extra derived files created during build: *.ih regex.h re. 1999-07-10 20:03:26 +00:00
COPYRIGHT 1. Removed cruft (timer.c, try.c, regexp.{3,c,h}, regmagic.h regsub.c) 1999-07-10 20:01:52 +00:00
Makefile.in Resurrected NeXT build 1999-08-13 17:54:59 +00:00
README 1. Removed cruft (timer.c, try.c, regexp.{3,c,h}, regmagic.h regsub.c) 1999-07-10 20:01:52 +00:00
WHATSNEW 1. Removed cruft (timer.c, try.c, regexp.{3,c,h}, regmagic.h regsub.c) 1999-07-10 20:01:52 +00:00
cclass.h Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +00:00
cname.h Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +00:00
debug.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
engine.c Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +00:00
main.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
mkh Removed hard coded PATH from mkh with did not work on NT 1999-07-13 18:02:50 +00:00
regcomp.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
regerror.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
regex.3 Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +00:00
regex.7 Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +00:00
regex2.h 1. Removed cruft (timer.c, try.c, regexp.{3,c,h}, regmagic.h regsub.c) 1999-07-10 20:01:52 +00:00
regexec.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
regfree.c replaced <regex.h> by "regex.h" to fetch the local file. 2000-09-19 13:33:25 +00:00
split.c Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +00:00
tests 1. Removed cruft (timer.c, try.c, regexp.{3,c,h}, regmagic.h regsub.c) 1999-07-10 20:01:52 +00:00
utils.h Making a dir for the C regexp engine (Spencer's) 1999-07-06 03:50:57 +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.
--------