diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2005-06-05 21:06:12 +0300 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-07 14:35:25 +0000 |
commit | 768c67ee6ae82fc2dd99a9dd06708f0a0cc097cb (patch) | |
tree | 2c7376ce53618bad206d31f088eae62bba0e59c2 /proto.h | |
parent | e07360faf0e39eb99a2f8007e291aab60c228731 (diff) | |
download | perl-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.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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__ |