[52cec0]: / test / types-typedef.c  Maximize  Restore  History

Download this file

14 lines (10 with data), 132 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
typedef struct {
int a;
int h;
} t_struct;
t_struct c;
struct s_struct{
int a;
int h;
};
typedef struct struct_s* t_struct2;