diff options
author | Doug MacEachern <dougm@covalent.net> | 2000-06-14 08:09:22 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-06-29 21:49:09 +0000 |
commit | 45645c0c182600881f3427c7498d7a9890d23152 (patch) | |
tree | 006bc5378c15e1766f33873e342dd9e352b748b1 /proto.h | |
parent | 2dc00d5bf719a9ed74e0637ca74ee27c3de3fb36 (diff) | |
download | perl-45645c0c182600881f3427c7498d7a9890d23152.tar.gz |
xsub attributes
Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
p4raw-id: //depot/cfgperl@6273
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -61,6 +61,11 @@ PERL_CALLCONV bool Perl_Gv_AMupdate(pTHX_ HV* stash); PERL_CALLCONV OP* Perl_append_elem(pTHX_ I32 optype, OP* head, OP* tail); PERL_CALLCONV OP* Perl_append_list(pTHX_ I32 optype, LISTOP* first, LISTOP* last); PERL_CALLCONV I32 Perl_apply(pTHX_ I32 type, SV** mark, SV** sp); +PERL_CALLCONV void Perl_apply_attrs_string(pTHX_ char *stashpv, CV *cv, char *attrstr, STRLEN len) +#ifdef CHECK_FORMAT + __attribute__((format(printf,pTHX_3,pTHX_4))) +#endif +; PERL_CALLCONV SV* Perl_avhv_delete_ent(pTHX_ AV *ar, SV* keysv, I32 flags, U32 hash); PERL_CALLCONV bool Perl_avhv_exists_ent(pTHX_ AV *ar, SV* keysv, U32 hash); PERL_CALLCONV SV** Perl_avhv_fetch_ent(pTHX_ AV *ar, SV* keysv, I32 lval, U32 hash); |