diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-11-20 18:27:55 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-11-20 21:04:19 -0800 |
commit | 27a1175bf36db67955ca3363f80694803bdcbfb2 (patch) | |
tree | 6275c8db1ef30759c06bc6238488393a34ccdeb6 /proto.h | |
parent | dbbe2d83c45bfa50b7f118650730dbd85df84150 (diff) | |
download | perl-27a1175bf36db67955ca3363f80694803bdcbfb2.tar.gz |
Add flags param to hv_ename_*
We will need this for making the API UTF8-aware in 5.16
or whenever.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1297,13 +1297,13 @@ PERL_CALLCONV void Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter) #define PERL_ARGS_ASSERT_HV_EITER_SET \ assert(hv) -PERL_CALLCONV void Perl_hv_ename_add(pTHX_ HV *hv, const char *name, U32 len) +PERL_CALLCONV void Perl_hv_ename_add(pTHX_ HV *hv, const char *name, U32 len, U32 flags) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_HV_ENAME_ADD \ assert(hv); assert(name) -PERL_CALLCONV void Perl_hv_ename_delete(pTHX_ HV *hv, const char *name, U32 len) +PERL_CALLCONV void Perl_hv_ename_delete(pTHX_ HV *hv, const char *name, U32 len, U32 flags) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_HV_ENAME_DELETE \ |