3 typedef struct data_panel data_panel
;
4 typedef struct type_union type_union
;
6 typedef enum type_val
{
25 extern type_union
i2u(int i
);
26 extern type_union
f2u(float f
);
27 extern type_union
c2u(char c
);
28 extern type_union
s2u(const char *s
);
30 static const type_union END
= { T_END
, { 0 } };
33 * Helper classes for the display of typed data
41 const char *fmt
; /* printf format argument */
42 type_union value
[MAX_FMT
]; /* (short) arugment list */