summaryrefslogtreecommitdiffstats
path: root/generic/regcomp.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2013-03-06 16:07:14 (GMT)
committerdgp@users.sourceforge.net <dgp>2013-03-06 16:07:14 (GMT)
commit12cdb82c95bd6870818fea725bef61262a9517f0 (patch)
tree0adff472dcf6e5a46e4b17b74f5e5538ed79b194 /generic/regcomp.c
parent0b4094f96f5012e590aa68487c1ab9d99f568b8c (diff)
downloadtcl-12cdb82c95bd6870818fea725bef61262a9517f0.zip
tcl-12cdb82c95bd6870818fea725bef61262a9517f0.tar.gz
tcl-12cdb82c95bd6870818fea725bef61262a9517f0.tar.bz2
New routine hasnonemptyout() for minor improvement to new fixempties().
Diffstat (limited to 'generic/regcomp.c')
-rw-r--r--generic/regcomp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/regcomp.c b/generic/regcomp.c
index 6fd9c81..083e9b1 100644
--- a/generic/regcomp.c
+++ b/generic/regcomp.c
@@ -123,6 +123,7 @@ static VOID destroystate _ANSI_ARGS_((struct nfa *, struct state *));
static VOID newarc _ANSI_ARGS_((struct nfa *, int, pcolor, struct state *, struct state *));
static struct arc *allocarc _ANSI_ARGS_((struct nfa *, struct state *));
static VOID freearc _ANSI_ARGS_((struct nfa *, struct arc *));
+static int hasnonemptyout _ANSI_ARGS_((struct state *));
static int nonemptyouts _ANSI_ARGS_((struct state *));
static int nonemptyins _ANSI_ARGS_((struct state *));
static struct arc *findarc _ANSI_ARGS_((struct state *, int, pcolor));