diff options
author | Karl Williamson <khw@cpan.org> | 2015-04-23 18:33:15 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-03 20:59:57 -0600 |
commit | fbe13c605d92f73c90ff4702b76a97c5e12927a7 (patch) | |
tree | 774ab7f101ca4ec12b2a2180282a5274aa577dc2 /hv.h | |
parent | 3c0792e45ff76456148c62f3bbc4873623151f56 (diff) | |
download | perl-fbe13c605d92f73c90ff4702b76a97c5e12927a7.tar.gz |
perlapi, perlintern: Add L<> links to pod
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -153,7 +153,7 @@ Null HV pointer. =for apidoc Am|char*|HvNAME|HV* stash Returns the package name of a stash, or NULL if C<stash> isn't a stash. -See C<SvSTASH>, C<CvSTASH>. +See C<L</SvSTASH>>, C<L</CvSTASH>>. =for apidoc Am|STRLEN|HvNAMELEN|HV *stash Returns the length of the stash's name. @@ -208,7 +208,7 @@ variable C<PL_na>, though this is rather less efficient than using a local variable. Remember though, that hash keys in perl are free to contain embedded nulls, so using C<strlen()> or similar is not a good way to find the length of hash keys. This is very similar to the C<SvPV()> macro -described elsewhere in this document. See also C<HeUTF8>. +described elsewhere in this document. See also C<L</HeUTF8>>. If you are using C<HePV> to get values to pass to C<newSVpvn()> to create a new SV, you should consider using C<newSVhek(HeKEY_hek(he))> as it is more |