diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-12 20:00:18 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-12 20:00:18 +0000 |
commit | cbae396092f5aa3ab7374d8414eb06704dfb41d6 (patch) | |
tree | b6df14e133cfcdd478b8fb8f9ea0a3f4ac36fa48 /hv.h | |
parent | 3341d187a8c660dcdef29c6ff668870f1d944ae1 (diff) | |
download | perl-cbae396092f5aa3ab7374d8414eb06704dfb41d6.tar.gz |
In the shared string table, store the HE and HEK next to each other
in one malloc()ed block.
p4raw-id: //depot/perl@24808
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |