diff options
author | Karl Williamson <khw@cpan.org> | 2019-05-29 18:33:25 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-05-30 18:13:29 -0600 |
commit | 44170c9a70d967e18e7d442d25d642a2e9359099 (patch) | |
tree | c438595b4123c2b1362855766483f799a9d8c2fc /inline.h | |
parent | 8902d5545f28d09d06be64c2fec58139f1492af0 (diff) | |
download | perl-44170c9a70d967e18e7d442d25d642a2e9359099.tar.gz |
Remove redundant info on =for apidoc lines
This information is already in embed.fnc, and we know it compiles. Some
of this information is now out-of-date. Get rid of it.
There was one bit of information that was (apparently) wrong in
embed.fnc. The apidoc line asked that there be no usage example
generated for newXS. I added that flag to the embed.fnc entry.
Diffstat (limited to 'inline.h')
-rw-r--r-- | inline.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1013,7 +1013,7 @@ Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el) /* -=for apidoc Am|STRLEN|isUTF8_CHAR|const U8 *s|const U8 *e +=for apidoc isUTF8_CHAR Evaluates to non-zero if the first few bytes of the string starting at C<s> and looking no further than S<C<e - 1>> are well-formed UTF-8, as extended by Perl, @@ -1156,7 +1156,7 @@ S_isSTRICT_UTF8_CHAR(const U8 * const s0, const U8 * const e) /* -=for apidoc Am|STRLEN|isC9_STRICT_UTF8_CHAR|const U8 *s|const U8 *e +=for apidoc isC9_STRICT_UTF8_CHAR Evaluates to non-zero if the first few bytes of the string starting at C<s> and looking no further than S<C<e - 1>> are well-formed UTF-8 that represents some @@ -1847,7 +1847,7 @@ S_utf8n_to_uvchr_msgs(const U8 *s, /* =head1 Miscellaneous Functions -=for apidoc AiR|bool|is_safe_syscall|const char *pv|STRLEN len|const char *what|const char *op_name +=for apidoc is_safe_syscall Test that the given C<pv> doesn't contain any internal C<NUL> characters. If it does, set C<errno> to C<ENOENT>, optionally warn, and return FALSE. |