diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-13 04:38:19 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-13 04:38:19 +0000 |
commit | 332ddc25e33054764b72da8fd0b572ab1c6c6e65 (patch) | |
tree | 11df6fb10d4e8bca0069f7509632e09304816644 /proto.h | |
parent | c4fbe2471f42249bd57e1c071c99349d2331aea5 (diff) | |
download | perl-332ddc25e33054764b72da8fd0b572ab1c6c6e65.tar.gz |
It could be possible for the case-insensitive
Unicode-aware string comparison to wander off
to the la-la land.
p4raw-id: //depot/perl@13669
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -315,7 +315,7 @@ PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV* tb, SV* key, SV* val, U32 hash); PERL_CALLCONV void Perl_hv_undef(pTHX_ HV* tb); PERL_CALLCONV I32 Perl_ibcmp(pTHX_ const char* a, const char* b, I32 len); PERL_CALLCONV I32 Perl_ibcmp_locale(pTHX_ const char* a, const char* b, I32 len); -PERL_CALLCONV I32 Perl_ibcmp_utf8(pTHX_ const char* a, bool ua, const char* b, bool ub, I32 len); +PERL_CALLCONV I32 Perl_ibcmp_utf8(pTHX_ const char* a, bool ua, I32 len1, const char* b, bool ub, I32 len2); PERL_CALLCONV bool Perl_ingroup(pTHX_ Gid_t testgid, Uid_t effective); PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int, char **); PERL_CALLCONV void Perl_init_debugger(pTHX); |