diff options
author | Andy Lester <andy@petdance.com> | 2005-03-14 07:59:54 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-18 13:38:32 +0000 |
commit | 7fc634935189abec1d574a9733c7093e5c9f2781 (patch) | |
tree | 812ca27d3ab8a2b9edc12b87c730981d50858d59 /pod/perlintern.pod | |
parent | ad5c2da20a409831a6acfe749626ce0396b43b3f (diff) | |
download | perl-7fc634935189abec1d574a9733c7093e5c9f2781.tar.gz |
More const parms
Message-ID: <20050314195954.GB7141@petdance.com>
p4raw-id: //depot/perl@24042
Diffstat (limited to 'pod/perlintern.pod')
-rw-r--r-- | pod/perlintern.pod | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod index d50cbbdf14..1d04a5dc8f 100644 --- a/pod/perlintern.pod +++ b/pod/perlintern.pod @@ -404,7 +404,16 @@ Currently assumes that C<name> is NUL terminated (as well as len being valid). This assumption is met by all callers within the perl core, which all pass pointers returned by SvPV. - bool is_gv_magical(char *name, STRLEN len, U32 flags) + bool is_gv_magical(const char *name, STRLEN len, U32 flags) + +=for hackers +Found in file gv.c + +=item is_gv_magical_sv + +Returns C<TRUE> if given the name of a magical GV. Calls is_gv_magical. + + bool is_gv_magical_sv(SV *name, U32 flags) =for hackers Found in file gv.c |