diff options
author | Andy Lester <andy@petdance.com> | 2005-07-18 05:37:38 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-07-18 15:23:38 +0000 |
commit | 9a957fbc017c803266bc4e3766dfcbfb58cfa99b (patch) | |
tree | beed88f144e14ca4175e374522d11a7175c151eb /pod/perlapi.pod | |
parent | 8896765ab803e8ecde87ca250efb892518f0df16 (diff) | |
download | perl-9a957fbc017c803266bc4e3766dfcbfb58cfa99b.tar.gz |
The continuing plod through embed.fnc
Message-ID: <20050718153738.GB20193@petdance.com>
p4raw-id: //depot/perl@25172
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 8dfce3376e..0d8a2cc031 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -5455,7 +5455,7 @@ Perl_to_utf8_case(). The "normal" is a string like "ToLower" which means the swash %utf8::ToLower. - UV to_utf8_case(const U8 *p, U8* ustrp, STRLEN *lenp, SV **swash, const char *normal, const char *special) + UV to_utf8_case(const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special) =for hackers Found in file utf8.c @@ -5529,7 +5529,7 @@ length, in bytes, of that character. Allows length and flags to be passed to low level routine. - UV utf8n_to_uvchr(const U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags) + UV utf8n_to_uvchr(const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) =for hackers Found in file utf8.c @@ -5554,7 +5554,7 @@ the strict UTF-8 encoding (see F<utf8.h>). Most code should use utf8_to_uvchr() rather than call this directly. - UV utf8n_to_uvuni(const U8 *s, STRLEN curlen, STRLEN* retlen, U32 flags) + UV utf8n_to_uvuni(const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags) =for hackers Found in file utf8.c @@ -5621,7 +5621,7 @@ length, in bytes, of that character. If C<s> does not point to a well-formed UTF-8 character, zero is returned and retlen is set, if possible, to -1. - UV utf8_to_uvchr(const U8 *s, STRLEN* retlen) + UV utf8_to_uvchr(const U8 *s, STRLEN *retlen) =for hackers Found in file utf8.c @@ -5638,7 +5638,7 @@ an index into the Unicode semantic tables (e.g. swashes). If C<s> does not point to a well-formed UTF-8 character, zero is returned and retlen is set, if possible, to -1. - UV utf8_to_uvuni(const U8 *s, STRLEN* retlen) + UV utf8_to_uvuni(const U8 *s, STRLEN *retlen) =for hackers Found in file utf8.c |