diff options
author | Vincent Pit <perl@profvince.com> | 2008-03-31 21:05:44 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-03-31 19:48:26 +0000 |
commit | c0dd94a09fcdb6ab5e0b1ca3c71b5902301ca665 (patch) | |
tree | 23866137031f3fe990b0966110796c205f8855f3 /proto.h | |
parent | cc8432b2c2234e63e6e0a56afb004bdbc786967e (diff) | |
download | perl-c0dd94a09fcdb6ab5e0b1ca3c71b5902301ca665.tar.gz |
Double magic with substr
Message-ID: <47F119E8.5010106@profvince.com>
p4raw-id: //depot/perl@33618
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -3185,6 +3185,12 @@ PERL_CALLCONV void Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, c #define PERL_ARGS_ASSERT_SV_INSERT \ assert(bigstr); assert(little) +PERL_CALLCONV void Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_4); +#define PERL_ARGS_ASSERT_SV_INSERT_FLAGS \ + assert(bigstr); assert(little) + PERL_CALLCONV int Perl_sv_isa(pTHX_ SV* sv, const char *const name) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_SV_ISA \ |