formatting

This commit is contained in:
rsc 2004-10-22 17:08:13 +00:00
parent 3e6107910e
commit e63027eb68

View file

@ -20,12 +20,12 @@ enum
struct Type struct Type
{ /* Font Tab 4 */ { /* Font Tab 4 */
uint ty; /* None, Struct, ... */ uint ty; /* None, Struct, ... */
vlong lo; /* for range */ vlong lo; /* for range */
char sue; char sue;
vlong hi; vlong hi;
uint gen; uint gen;
uint n1; /* type number (impl dependent) */ uint n1; /* type number (impl dependent) */
uint n2; /* another type number */ uint n2; /* another type number */
char *name; /* name of type */ char *name; /* name of type */
char *suename; /* name of struct, union, enumeration */ char *suename; /* name of struct, union, enumeration */
uint isunion; /* is this Struct a union? */ uint isunion; /* is this Struct a union? */
@ -33,13 +33,13 @@ struct Type
uint xsizeof; /* size of type */ uint xsizeof; /* size of type */
Type *sub; /* subtype */ Type *sub; /* subtype */
uint n; /* count for t, tname, val */ uint n; /* count for t, tname, val */
Type **t; /* members of sue, params of function */ Type **t; /* members of sue, params of function */
char **tname; /* associated names */ char **tname; /* associated names */
long *val; /* associated offsets or values */ long *val; /* associated offsets or values */
uint didtypedef; /* internal flag */ uint didtypedef; /* internal flag */
uint didrange; /* internal flag */ uint didrange; /* internal flag */
uint printed; /* internal flag */ uint printed; /* internal flag */
Type *equiv; /* internal */ Type *equiv; /* internal */
}; };
struct TypeList struct TypeList