• Home
Name Date Size #Lines LOC

..--

COPYRIGHTD03-May-2024956 2115

MakefileD03-May-20243.1 KiB13183

READMED03-May-20241.2 KiB3324

WHATSNEWD03-May-20245.9 KiB10993

cclass.hD03-May-2024917 3230

cname.hD03-May-20241.8 KiB103101

debug.cD03-May-20245 KiB243223

debug.ihD03-May-2024329 1512

engine.cD03-May-202425 KiB1,020854

engine.ihD03-May-20241.3 KiB3633

main.cD03-May-202410.9 KiB511421

main.ihD03-May-2024500 2017

mkhD03-May-20241.8 KiB7761

regcomp.cD03-May-202436.4 KiB1,6041,204

regcomp.ihD03-May-20242.6 KiB5249

regerror.cD03-May-20243.1 KiB12786

regerror.ihD03-May-2024267 1310

regex.3D03-May-202414.6 KiB510506

regex.7D03-May-20249.5 KiB236235

regex.defD03-May-202474 87

regex.hD03-May-20241.8 KiB7557

regex2.hD03-May-20245.2 KiB13572

regexec.cD03-May-20244.1 KiB13997

regfree.cD03-May-2024721 3828

split.cD03-May-20246.9 KiB317270

testsD03-May-202412 KiB478457

utils.hD03-May-2024500 2317

README

1alpha3.8 release.
2Tue Aug 10 15:51:48 EDT 1999
3henry@spsystems.net  (formerly henry@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