diff options
author | Peter Prymmer <PPrymmer@factset.com> | 2000-11-29 04:36:40 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-30 01:11:11 +0000 |
commit | be2c7115ec914eafe55774691f80f4bbd7a150f0 (patch) | |
tree | 81b043fbd113e491ff7bf0e93d17123aa7918450 /utf8.c | |
parent | 03ec374d2c2a4dbd05f89d83850179249a7ac42c (diff) | |
download | perl-be2c7115ec914eafe55774691f80f4bbd7a150f0.tar.gz |
Re: question about retlen in utf8.c:Perl_utf8_to_uv()
Message-ID: <Pine.OSF.4.10.10011291233120.328738-100000@aspara.forte.com>
plus regen perlapi.pod.
p4raw-id: //depot/perl@7932
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -171,7 +171,7 @@ Perl_is_utf8_string(pTHX_ U8 *s, STRLEN len) } /* -=for apidoc Am|U8* s|utf8_to_uv|STRLEN curlen|I32 *retlen|U32 flags +=for apidoc Am|U8* s|utf8_to_uv|STRLEN curlen|STRLEN *retlen|U32 flags Returns the character value of the first character in the string C<s> which is assumed to be in UTF8 encoding and no longer than C<curlen>; @@ -182,7 +182,8 @@ If C<s> does not point to a well-formed UTF8 character, the behaviour is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY, it is assumed that the caller will raise a warning, and this function will set C<retlen> to C<-1> and return. The C<flags> can also contain -various flags to allow deviations from the strict UTF-8 encoding. +various flags to allow deviations from the strict UTF-8 encoding +(see F<utf8.h>). =cut */ |