1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

regenc.h: shrink PosixBracketEntryType

* regenc.h (PosixBracketEntryType): shrink by embedding `name` and
  reordering.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-09-16 02:44:19 +00:00
parent 5f63d9e741
commit c49c63e02d

View file

@ -102,13 +102,13 @@ typedef struct {
typedef struct {
const UChar *name;
int ctype;
short int len;
const UChar name[6];
int ctype;
} PosixBracketEntryType;
#define POSIX_BRACKET_ENTRY_INIT(name, ctype) \
{(const UChar* )(name), (ctype), (short int )(sizeof(name) - 1)}
{(short int )(sizeof(name) - 1), (name), (ctype)}
#ifndef numberof
#define numberof(array) (int )(sizeof(array) / sizeof((array)[0]))