Name Date Size #Lines LOC

..05-Dec-2019-

COPYRIGHTH A D05-Dec-2019950 2115

READMEH A D05-Dec-20191.2 KiB3324

WHATSNEWH A D05-Dec-20195.2 KiB9381

cclass.hH A D05-Dec-2019992 3129

cname.hH A D05-Dec-20192 KiB103101

debug.cH A D05-Dec-20195 KiB243223

debug.ihH A D05-Dec-2019329 1512

engine.cH A D05-Dec-201925.6 KiB1,020854

engine.ihH A D05-Dec-20191.5 KiB3633

main.cH A D05-Dec-201910.9 KiB511421

main.ihH A D05-Dec-2019500 2017

mkhH A D05-Dec-20191.8 KiB7761

regcomp.cH A D05-Dec-201937.2 KiB1,6261,221

regcomp.ihH A D05-Dec-20192.7 KiB5451

regerror.cH A D05-Dec-20193.3 KiB13190

regerror.ihH A D05-Dec-2019280 1310

regex.3H A D05-Dec-201914.4 KiB503499

regex.7H A D05-Dec-20199.5 KiB234233

regex.dspH A D05-Dec-20193.7 KiB10792

regex.dswH A D05-Dec-2019504 3019

regex.hH A D05-Dec-20192.1 KiB8667

regex.makH A D05-Dec-20195.7 KiB305217

regex2.hH A D05-Dec-20195.4 KiB14172

regexec.cH A D05-Dec-20194.2 KiB13997

regfree.cH A D05-Dec-2019738 3828

split.cH A D05-Dec-20196.9 KiB317270

testsH A D05-Dec-201912 KiB476455

utils.hH A D05-Dec-2019501 2417

README

1alpha3.4 release.
2Thu Mar 17 23:17:18 EST 1994
3henry@zoo.toronto.edu
4
5See WHATSNEW for change listing.
6
7installation notes:
8--------
9Read the comments at the beginning of Makefile before running.
10
11Utils.h contains some things that just might have to be modified on
12some systems, as well as a nested include (ugh) of <assert.h>.
13
14The "fake" directory contains quick-and-dirty fakes for some header
15files and routines that old systems may not have.  Note also that
16-DUSEBCOPY will make utils.h substitute bcopy() for memmove().
17
18After that, "make r" will build regcomp.o, regexec.o, regfree.o,
19and regerror.o (the actual routines), bundle them together into a test
20program, and run regression tests on them.  No output is good output.
21
22"make lib" builds just the .o files for the actual routines (when
23you're happy with testing and have adjusted CFLAGS for production),
24and puts them together into libregex.a.  You can pick up either the
25library or *.o ("make lib" makes sure there are no other .o files left
26around to confuse things).
27
28Main.c, debug.c, split.c are used for regression testing but are not part
29of the RE routines themselves.
30
31Regex.h goes in /usr/include.  All other .h files are internal only.
32--------
33