diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-11-22 10:37:24 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-11-22 10:37:24 +0000 |
commit | 9b7c1c416b1df37975076158920b5c2b361392c1 (patch) | |
tree | 42f4bbd7b06e508335dd8bb25a0e9144cb9e9d7d /proto.h | |
parent | 8829b5e274708a88ac8ad69b61a45a9d67695db5 (diff) | |
download | perl-9b7c1c416b1df37975076158920b5c2b361392c1.tar.gz |
Shift negative klen/flags games from hv_exists_common out to hv_exists
p4raw-id: //depot/perl@21768
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1336,7 +1336,7 @@ PERL_CALLCONV void Perl_hv_assert(pTHX_ HV* tb); #if defined(PERL_IN_HV_C) || defined(PERL_DECL_PROT) STATIC SV* S_hv_delete_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int k_flags, I32 d_flags, U32 hash); -STATIC bool S_hv_exists_common(pTHX_ HV* tb, SV* key_sv, const char* key, I32 klen, U32 hash); +STATIC bool S_hv_exists_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int flags, U32 hash); STATIC HE* S_hv_fetch_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int flags, int action, U32 hash); STATIC HE* S_hv_store_common(pTHX_ HV* tb, SV* key_sv, const char* key, I32 klen, int flags, SV* val, U32 hash); #endif |