summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorPeter Prymmer <PPrymmer@factset.com>2000-11-29 04:36:40 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-30 01:11:11 +0000
commitbe2c7115ec914eafe55774691f80f4bbd7a150f0 (patch)
tree81b043fbd113e491ff7bf0e93d17123aa7918450 /utf8.c
parent03ec374d2c2a4dbd05f89d83850179249a7ac42c (diff)
downloadperl-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.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/utf8.c b/utf8.c
index 48c772db52..e313258574 100644
--- a/utf8.c
+++ b/utf8.c
@@ -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 */