diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-05-03 22:14:41 +0200 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-05-04 14:46:05 +0000 |
commit | 66c611c54494622936416a3e5713bc7d44ef96ba (patch) | |
tree | 4525abf5dad52150d4f4db8ac10ee4cf5c7b34d9 /perl.h | |
parent | 2cc7004b6c4549e1be46c2a567acf33609c2a687 (diff) | |
download | perl-66c611c54494622936416a3e5713bc7d44ef96ba.tar.gz |
Add byte-order group modifiers to (un)pack templates.
Follow-up on: #22734, #22745, #22753, #22754.
Subject: Group modifiers in (un)pack templates
Message-Id: <20040503201441.1b058e0d@r2d2>
p4raw-id: //depot/perl@22780
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3719,11 +3719,12 @@ typedef struct { char* patend; /* one after last char */ char* grpbeg; /* 1st char of ()-group */ char* grpend; /* end of ()-group */ - I32 code; /* template code (!) */ + I32 code; /* template code (!<>) */ I32 length; /* length/repeat count */ howlen_t howlen; /* how length is given */ int level; /* () nesting level */ U32 flags; /* /=4, comma=2, pack=1 */ + /* and group modifiers */ } tempsym_t; #include "thread.h" |