1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hmz007 6d24f2138b
Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56)
3 years ago
..
COPYRIGHT Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
Makefile Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
README Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
WHATSNEW Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
cclass.h Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
cname.h Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
debug.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
debug.ih Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
engine.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
engine.ih Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
main.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
main.ih Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
mkh Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regcomp.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regcomp.ih Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regerror.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regerror.ih Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regex.3 Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regex.7 Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regex.def Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regex.h Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regex2.h Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regexec.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
regfree.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
split.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
tests Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
utils.h Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago

README

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