Hi all, let's say I've
foo.c
struct foo {
int a;
};
bar.c
struct foo {
char *s;
double x,y;
};
The struct definitions are only in .c files. Is it legal according to C standard? Which part of standard says so? Edit: There're no #inclusion of struct definition.
Thank you all for fast response! :D