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 /handy.h | |
parent | 3c0792e45ff76456148c62f3bbc4873623151f56 (diff) | |
download | perl-fbe13c605d92f73c90ff4702b76a97c5e12927a7.tar.gz |
perlapi, perlintern: Add L<> links to pod
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1812,13 +1812,13 @@ there for use in XS modules supporting older perls. =for apidoc Am|void|Newxc|void* ptr|int nitems|type|cast The XSUB-writer's interface to the C C<malloc> function, with -cast. See also C<Newx>. +cast. See also C<L</Newx>>. Memory obtained by this should B<ONLY> be freed with L<"Safefree">. =for apidoc Am|void|Newxz|void* ptr|int nitems|type The XSUB-writer's interface to the C C<malloc> function. The allocated -memory is zeroed with C<memzero>. See also C<Newx>. +memory is zeroed with C<memzero>. See also C<L</Newx>>. Memory obtained by this should B<ONLY> be freed with L<"Safefree">. @@ -1841,7 +1841,7 @@ This should B<ONLY> be used on memory obtained using L<"Newx"> and friends. =for apidoc Am|void|Move|void* src|void* dest|int nitems|type The XSUB-writer's interface to the C C<memmove> function. The C<src> is the source, C<dest> is the destination, C<nitems> is the number of items, and -C<type> is the type. Can do overlapping moves. See also C<Copy>. +C<type> is the type. Can do overlapping moves. See also C<L</Copy>>. =for apidoc Am|void *|MoveD|void* src|void* dest|int nitems|type Like C<Move> but returns dest. Useful @@ -1851,7 +1851,7 @@ optimise. =for apidoc Am|void|Copy|void* src|void* dest|int nitems|type The XSUB-writer's interface to the C C<memcpy> function. The C<src> is the source, C<dest> is the destination, C<nitems> is the number of items, and -C<type> is the type. May fail on overlapping copies. See also C<Move>. +C<type> is the type. May fail on overlapping copies. See also C<L</Move>>. =for apidoc Am|void *|CopyD|void* src|void* dest|int nitems|type |