diff options
author | Karl Williamson <khw@cpan.org> | 2016-08-26 13:54:51 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-08-31 20:32:36 -0600 |
commit | a4c56e8a5d60847e5e2753da6f3e6a291d9f55c7 (patch) | |
tree | e7c91aeee27a24ea0b52847f51903cf09763aebb /embed.fnc | |
parent | c205683cc2dbf8013c5d6e69a3a694369535e2a8 (diff) | |
download | perl-a4c56e8a5d60847e5e2753da6f3e6a291d9f55c7.tar.gz |
is_utf8_invariant_string is pure
As are its synonyms. This also declares the formal parameters 'const'
Diffstat (limited to 'embed.fnc')
-rw-r--r-- | embed.fnc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -731,9 +731,9 @@ ADMpPR |bool |is_uni_lower_lc|UV c ADMpPR |bool |is_uni_print_lc|UV c ADMpPR |bool |is_uni_punct_lc|UV c ADMpPR |bool |is_uni_xdigit_lc|UV c -AnpdR |bool |is_utf8_invariant_string|NN const U8 *s|STRLEN len -AmnpdR |bool |is_ascii_string|NN const U8 *s|STRLEN len -AmnpdR |bool |is_invariant_string|NN const U8 *s|STRLEN len +AnpdRP |bool |is_utf8_invariant_string|NN const U8* const s|STRLEN const len +AmnpdRP |bool |is_ascii_string|NN const U8* const s|const STRLEN len +AmnpdRP |bool |is_invariant_string|NN const U8* const s|const STRLEN len AnpdD |STRLEN |is_utf8_char |NN const U8 *s Abmnpd |STRLEN |is_utf8_char_buf|NN const U8 *buf|NN const U8 *buf_end Anpd |bool |is_utf8_string |NN const U8 *s|STRLEN len |