diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-07 18:23:47 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-07 18:23:47 +0000 |
commit | b06226ff370ef661c3ff28e6f65e1ba0ef078609 (patch) | |
tree | 0cbb3e1046b115ca268a0ea37cc2496783af6ab1 /utf8.c | |
parent | f4db98e1cd183f1e13ca530083e74216f380f549 (diff) | |
download | perl-b06226ff370ef661c3ff28e6f65e1ba0ef078609.tar.gz |
Document utf8_length(), utf8_distance(), and utf8_hop().
p4raw-id: //depot/perl@8023
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 25 |
1 files changed, 21 insertions, 4 deletions
@@ -362,7 +362,7 @@ Perl_utf8_to_uv_simple(pTHX_ U8* s, STRLEN* retlen) } /* -=for apidoc|utf8_length|U8 *s|U8 *e +=for apidoc Am|STRLEN|utf8_length|U8* s|U8 *e Return the length of the UTF-8 char encoded string C<s> in characters. Stops at C<e> (inclusive). If C<e E<lt> s> or if the scan would end @@ -390,8 +390,16 @@ Perl_utf8_length(pTHX_ U8* s, U8* e) return len; } -/* utf8_distance(a,b) returns the number of UTF8 characters between - the pointers a and b */ +/* +=for apidoc Am|IV|utf8_distance|U8 *a|U8 *b + +Returns the number of UTF8 characters between the UTF-8 pointers C<a> +and C<b>. + +WARNING: use only if you *know* that the pointers point inside the +same UTF-8 buffer. + +=cut */ IV Perl_utf8_distance(pTHX_ U8 *a, U8 *b) @@ -422,7 +430,16 @@ Perl_utf8_distance(pTHX_ U8 *a, U8 *b) return off; } -/* WARNING: do not use the following unless you *know* off is within bounds */ +/* +=for apidoc Am|U8*|utf8_hop|U8 *s|I32 off + +Move the C<s> pointing to UTF-8 data by C<off> characters, either forward +or backward. + +WARNING: do not use the following unless you *know* C<off> is within +the UTF-8 buffer pointed to by C<s>. + +=cut */ U8 * Perl_utf8_hop(pTHX_ U8 *s, I32 off) |