summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2005-06-05 21:06:12 +0300
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-07 14:35:25 +0000
commit768c67ee6ae82fc2dd99a9dd06708f0a0cc097cb (patch)
tree2c7376ce53618bad206d31f088eae62bba0e59c2 /proto.h
parente07360faf0e39eb99a2f8007e291aab60c228731 (diff)
downloadperl-768c67ee6ae82fc2dd99a9dd06708f0a0cc097cb.tar.gz
one more round of is_utf8_foo tuneup
Message-ID: <42A314E4.8060608@gmail.com> p4raw-id: //depot/perl@24730
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 1b9c6b6a40..a3be5fbb1c 100644
--- a/proto.h
+++ b/proto.h
@@ -620,8 +620,10 @@ PERL_CALLCONV bool Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN len)
__attribute__nonnull__(pTHX_1);
PERL_CALLCONV bool Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **p)
- __attribute__nonnull__(pTHX_1)
- __attribute__nonnull__(pTHX_3);
+ __attribute__nonnull__(pTHX_1);
+
+PERL_CALLCONV bool Perl_is_utf8_string_loclen(pTHX_ const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
+ __attribute__nonnull__(pTHX_1);
PERL_CALLCONV bool Perl_is_utf8_alnum(pTHX_ const U8 *p)
__attribute__warn_unused_result__