summaryrefslogtreecommitdiff
path: root/embed.fnc
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-08-26 13:54:51 -0600
committerKarl Williamson <khw@cpan.org>2016-08-31 20:32:36 -0600
commita4c56e8a5d60847e5e2753da6f3e6a291d9f55c7 (patch)
treee7c91aeee27a24ea0b52847f51903cf09763aebb /embed.fnc
parentc205683cc2dbf8013c5d6e69a3a694369535e2a8 (diff)
downloadperl-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.fnc6
1 files changed, 3 insertions, 3 deletions
diff --git a/embed.fnc b/embed.fnc
index 0af2fae7bf..f9fd4181d2 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -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