diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-25 16:26:12 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-25 16:26:12 +0000 |
commit | 0bff533ca2a343dc64973f34f3c611670d92fff1 (patch) | |
tree | 1603e9a8b653c21ea87cc27f24ca48b9e895c753 /proto.h | |
parent | c21d1a0f049833fd2ca59ef598337f86f2cd08f4 (diff) | |
download | perl-0bff533ca2a343dc64973f34f3c611670d92fff1.tar.gz |
Export Perl_hek_dup, which duplicates shared hash keys.
p4raw-id: //depot/perl@24575
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1732,6 +1732,7 @@ PERL_CALLCONV PERL_SI* Perl_si_dup(pTHX_ PERL_SI* si, CLONE_PARAMS* param); PERL_CALLCONV ANY* Perl_ss_dup(pTHX_ PerlInterpreter* proto_perl, CLONE_PARAMS* param); PERL_CALLCONV void* Perl_any_dup(pTHX_ void* v, PerlInterpreter* proto_perl); PERL_CALLCONV HE* Perl_he_dup(pTHX_ HE* e, bool shared, CLONE_PARAMS* param); +PERL_CALLCONV HEK* Perl_hek_dup(pTHX_ HEK* e, CLONE_PARAMS* param); PERL_CALLCONV REGEXP* Perl_re_dup(pTHX_ REGEXP* r, CLONE_PARAMS* param); PERL_CALLCONV PerlIO* Perl_fp_dup(pTHX_ PerlIO* fp, char type, CLONE_PARAMS* param); PERL_CALLCONV DIR* Perl_dirp_dup(pTHX_ DIR* dp); |