

rexp.c
rexp.h - Abstract syntax trees for regexps.

comp.c
comp.h - A regexp compiler (string -> syntax tree)

nfa.c
nfa.h - An abstract data type representing non-deterministic
	finite automata.  A transltator from regexp syntax
	trees to NFAs.

unfa.c
unfa.h - A cached mapping from regexp syntax trees to NFAs.

dfa.c
dfa.h - An abstract data type representing deterministic
	finite automata.  Functions for building DFAs from
	NFAs and using those DFAs for matching.

super.c
super.h - Low level functions relating to DFA construction
	  and matching.

posix.c
posix.h - Standard entry points for matching regexps (more general
	  category of patterns than regular expressions).

match-regexp.c
match-regexp.h - Low level functions for matching regexps.

dbug.c
dbug.h - Functions useful for debugging Rx and programs
	 which use Rx.

errnorx.c
errnorx.h - A table of messages corresponding to Rx error codes.



,file-id archive://[lord]/458/rx/INDEX/1998-05-19

