зеркало из https://github.com/github/ruby.git
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:
Родитель
5f63d9e741
Коммит
c49c63e02d
6
regenc.h
6
regenc.h
|
@ -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]))
|
||||
|
|
Загрузка…
Ссылка в новой задаче