From cbae396092f5aa3ab7374d8414eb06704dfb41d6 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sun, 12 Jun 2005 20:00:18 +0000 Subject: In the shared string table, store the HE and HEK next to each other in one malloc()ed block. p4raw-id: //depot/perl@24808 --- hv.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'hv.h') diff --git a/hv.h b/hv.h index 3115dba91c..ac4bdd33c8 100644 --- a/hv.h +++ b/hv.h @@ -29,6 +29,10 @@ struct hek { is UTF-8 */ }; +struct shared_he { + struct he shared_he_he; + struct hek shared_he_hek; +}; /* Subject to change. Don't access this directly. -- cgit v1.2.1