I have the following declaration in a header file:
struct mystruct;
int func(struct mystruct* s); // Passing struct mystruct*
Without the forward declaration, the compiler would obviously give this error:
warning: 'struct mystruct' declared inside parameter list
However, if I replace the forward declaration of mystruct with a typedef, and update the function declaration accordingly, it compiles fine:
typedef struct my_struct mystruct_t;
int func(mystruct_t* s); // Passing mystruct_t*
Curiously, if I keep the typedef, but use the original declaration mystruct, it also compiles:
typedef struct my_struct mystruct_t;
int func(struct mystruct* s); // Passing struct mystruct*
Did anybody else notice that? Is that behavior a side-effect?
