diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-04 19:36:51 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-04 19:36:51 +0000 |
commit | da58a35d3e499cdd492619302eb044ac1841788f (patch) | |
tree | 33aec77245e5242e960797d9a1f9e3be7c6382b9 /pod | |
parent | 38ff9fd43e4d2321f907bd54ac8e6791531cd9fc (diff) | |
download | perl-da58a35d3e499cdd492619302eb044ac1841788f.tar.gz |
UTF-8 hash keys, patch from Inaba Hiroto.
p4raw-id: //depot/perl@7980
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 7296c81d0e..e3e7479a23 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -761,7 +761,7 @@ hash and returned to the caller. The C<klen> is the length of the key. The C<flags> value will normally be zero; if set to G_DISCARD then NULL will be returned. - SV* hv_delete(HV* tb, const char* key, U32 klen, I32 flags) + SV* hv_delete(HV* tb, const char* key, I32 klen, I32 flags) =for hackers Found in file hv.c @@ -783,7 +783,7 @@ Found in file hv.c Returns a boolean indicating whether the specified hash key exists. The C<klen> is the length of the key. - bool hv_exists(HV* tb, const char* key, U32 klen) + bool hv_exists(HV* tb, const char* key, I32 klen) =for hackers Found in file hv.c @@ -809,7 +809,7 @@ dereferencing it to a C<SV*>. See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more information on how to use this function on tied hashes. - SV** hv_fetch(HV* tb, const char* key, U32 klen, I32 lval) + SV** hv_fetch(HV* tb, const char* key, I32 klen, I32 lval) =for hackers Found in file hv.c @@ -920,7 +920,7 @@ the call, and decrementing it if the function returned NULL. See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more information on how to use this function on tied hashes. - SV** hv_store(HV* tb, const char* key, U32 klen, SV* val, U32 hash) + SV** hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash) =for hackers Found in file hv.c |