struct/union definitions

This commit is contained in:
pommicket 2022-01-26 18:00:47 -05:00
parent 387d650cab
commit d036dcc5ac
6 changed files with 217 additions and 35 deletions

View file

@ -2,5 +2,18 @@
int i[41];
long double d;
} (*x)(void);
*/
typedef int *Foo[sizeof(unsigned short int)];
/* typedef enum X { */
/* R,S,T */
/* } *Foo[sizeof(unsigned long)]; */
/* typedef int A[T]; */
typedef struct A {
int x, y;
long double c;
unsigned long d;
char e[3];
char c[2];
char d;
long f;
} A;