diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-12-28 06:55:13 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-12-29 06:03:29 -0800 |
commit | 72d33970ea94fe3382327160378d9bc042cb1d73 (patch) | |
tree | d0fa33baac69f3ad3cdd800c307562d4e2883cda /handy.h | |
parent | 147eebd0a5a440afce6e575b0430102a24a6ab9d (diff) | |
download | perl-72d33970ea94fe3382327160378d9bc042cb1d73.tar.gz |
perlapi: Consistent spaces after dots
plus some typo fixes. I probably changed some things in perlintern, too.
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -25,10 +25,11 @@ =head1 Handy Values =for apidoc AmU||Nullch -Null character pointer. (No longer available when C<PERL_CORE> is defined.) +Null character pointer. (No longer available when C<PERL_CORE> is +defined.) =for apidoc AmU||Nullsv -Null SV pointer. (No longer available when C<PERL_CORE> is defined.) +Null SV pointer. (No longer available when C<PERL_CORE> is defined.) =cut */ @@ -420,12 +421,12 @@ the second, C<s2>. Returns true or false. =for apidoc Am|bool|strnNE|char* s1|char* s2|STRLEN len Test two strings to see if they are different. The C<len> parameter -indicates the number of bytes to compare. Returns true or false. (A +indicates the number of bytes to compare. Returns true or false. (A wrapper for C<strncmp>). =for apidoc Am|bool|strnEQ|char* s1|char* s2|STRLEN len Test two strings to see if they are equal. The C<len> parameter indicates -the number of bytes to compare. Returns true or false. (A wrapper for +the number of bytes to compare. Returns true or false. (A wrapper for C<strncmp>). =cut @@ -1607,7 +1608,8 @@ 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>. =for apidoc Am|void *|MoveD|void* src|void* dest|int nitems|type -Like C<Move> but returns dest. Useful for encouraging compilers to tail-call +Like C<Move> but returns dest. Useful +for encouraging compilers to tail-call optimise. =for apidoc Am|void|Copy|void* src|void* dest|int nitems|type @@ -1617,7 +1619,8 @@ C<type> is the type. May fail on overlapping copies. See also C<Move>. =for apidoc Am|void *|CopyD|void* src|void* dest|int nitems|type -Like C<Copy> but returns dest. Useful for encouraging compilers to tail-call +Like C<Copy> but returns dest. Useful +for encouraging compilers to tail-call optimise. =for apidoc Am|void|Zero|void* dest|int nitems|type @@ -1627,7 +1630,8 @@ destination, C<nitems> is the number of items, and C<type> is the type. =for apidoc Am|void *|ZeroD|void* dest|int nitems|type -Like C<Zero> but returns dest. Useful for encouraging compilers to tail-call +Like C<Zero> but returns dest. Useful +for encouraging compilers to tail-call optimise. =for apidoc Am|void|StructCopy|type *src|type *dest|type |