summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-20 18:27:55 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-20 21:04:19 -0800
commit27a1175bf36db67955ca3363f80694803bdcbfb2 (patch)
tree6275c8db1ef30759c06bc6238488393a34ccdeb6 /proto.h
parentdbbe2d83c45bfa50b7f118650730dbd85df84150 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index a24a9cbb68..8a76cea2bf 100644
--- a/proto.h
+++ b/proto.h
@@ -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 \