• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..03-Sep-201419

cclass.hH A D24-Feb-2010917

cname.hH A D24-Feb-20101.8 KiB

COPYRIGHTH A D24-Feb-2010956

debug.cH A D24-Feb-20105 KiB

debug.ihH A D24-Feb-2010329

engine.cH A D17-Aug-201025 KiB

engine.ihH A D24-Feb-20101.3 KiB

main.cH A D24-Feb-201010.9 KiB

main.ihH A D24-Feb-2010500

MakefileH A D24-Feb-20103.1 KiB

mkhH A D24-Feb-20101.8 KiB

READMEH A D24-Feb-20101.2 KiB

regcomp.cH A D06-Feb-201436.4 KiB

regcomp.ihH A D24-Feb-20102.6 KiB

regerror.cH A D24-Feb-20103.1 KiB

regerror.ihH A D24-Feb-2010267

regex.3H A D24-Feb-201014.6 KiB

regex.7H A D24-Feb-20109.5 KiB

regex.defH A D13-Feb-201274

regex.hH A D24-Feb-20101.8 KiB

regex2.hH A D24-Feb-20105.2 KiB

regexec.cH A D24-Feb-20104.1 KiB

regfree.cH A D24-Feb-2010721

split.cH A D24-Feb-20106.9 KiB

testsH A D24-Feb-201012 KiB

utils.hH A D24-Feb-2010500

WHATSNEWH A D24-Feb-20105.9 KiB

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