Typedef type2

Another example typedef comment, a type that is a struct.

typedef struct {...} type2

struct  
{  
int a A variable in a struct.
union bar Nested structs and unions also work.
{  
void a Each element
int b of a struct
int c or a union
long d can have a comment
}  
e  
}