• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

CHANGESH A D13-Dec-2021554 2011

COPYRIGHTH A D13-Dec-2021950 2115

READMEH A D13-Dec-20211.2 KiB3324

WHATSNEWH A D13-Dec-20215.2 KiB9381

cclass.hH A D13-Dec-2021442 2319

cname.hH A D13-Dec-20212.3 KiB105101

debug.cH A D13-Dec-20215.1 KiB247225

debug.ihH A D13-Dec-2021411 1613

engine.cH A D13-Dec-202125.2 KiB1,029864

engine.ihH A D13-Dec-20211.6 KiB4441

main.cH A D13-Dec-202113.1 KiB590487

main.ihH A D13-Dec-2021497 2017

my_regex.hH A D13-Dec-20212.5 KiB9468

regcomp.cH A D13-Dec-202137.7 KiB1,6491,243

regcomp.ihH A D13-Dec-20212.1 KiB5148

regerror.cH A D13-Dec-20213.1 KiB11778

regerror.ihH A D13-Dec-2021270 1310

regex.3H A D13-Dec-202114.4 KiB503499

regex.7H A D13-Dec-20219.5 KiB234233

regex2.hH A D13-Dec-20215.4 KiB14477

regexec.cH A D13-Dec-20215.5 KiB16999

regexp.cH A D13-Dec-202131.5 KiB1,349929

regfree.cH A D13-Dec-2021744 3929

reginit.cH A D13-Dec-20212.1 KiB8672

split.cH A D13-Dec-20217.1 KiB325278

tests_include.hH A D13-Dec-202114.7 KiB483482

utils.hH A D13-Dec-2021414 1814

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