diff options
author | Yves Orton <demerphq@gmail.com> | 2007-02-13 21:27:33 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-02-13 19:43:15 +0000 |
commit | 93b32b6daeecaf211c8a9bf2a93d0f4701c279ab (patch) | |
tree | a0ff4796f46b034f006727d9e4e425c2efc2fbfb /proto.h | |
parent | a3b492c399ef137d223bafd54197b14ebda3d9e0 (diff) | |
download | perl-93b32b6daeecaf211c8a9bf2a93d0f4701c279ab.tar.gz |
add hooks for capture buffers into regex engine.
Message-ID: <9b18b3110702131127q79cc6df1lb1480d9a40d15213@mail.gmail.com>
p4raw-id: //depot/perl@30265
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1888,12 +1888,15 @@ PERL_CALLCONV regnode* Perl_regnext(pTHX_ regnode* p) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); -PERL_CALLCONV SV* Perl_reg_named_buff_get(pTHX_ SV* namesv, const REGEXP * const from_re, U32 flags) - __attribute__nonnull__(pTHX_1); -PERL_CALLCONV SV* Perl_reg_numbered_buff_get(pTHX_ I32 paren, const REGEXP * const rx, SV* usesv, U32 flags) +PERL_CALLCONV SV* Perl_reg_named_buff_get(pTHX_ const REGEXP * const rx, SV* namesv, U32 flags) + __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); +PERL_CALLCONV SV* Perl_reg_numbered_buff_get(pTHX_ const REGEXP * const rx, I32 paren, SV* usesv) + __attribute__nonnull__(pTHX_1); + + PERL_CALLCONV void Perl_regprop(pTHX_ const regexp *prog, SV* sv, const regnode* o) __attribute__nonnull__(pTHX_2) __attribute__nonnull__(pTHX_3); |