diff options
author | Simon Cozens <simon@netthink.co.uk> | 2001-08-01 06:57:02 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-08-01 22:38:31 +0000 |
commit | a2efc82216efc10377cf26fd4aff1aa5e66c6687 (patch) | |
tree | 6c9717258434d9d96ae509d2c3d7cd229e20b852 /perl.h | |
parent | 6bab786b4dc26323c40cdd19dc27ad4499214f4e (diff) | |
download | perl-a2efc82216efc10377cf26fd4aff1aa5e66c6687.tar.gz |
Pluggable optimizer
Message-ID: <20010801135702.I10442@netthink.co.uk>
p4raw-id: //depot/perl@11541
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3019,6 +3019,7 @@ enum { /* pass one of these to get_vtbl */ #define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0)) /* Enable variables which are pointers to functions */ +typedef void (CPERLscope(*peep_t))(pTHX_ OP* o); typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm); typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg, char* strend, char* strbeg, I32 minend, |