Hi,
I get this error:
transform.c:23: warning: ‘struct user_data_s’ declared inside parameter list
transform.c:23: warning: its scope is only this definition or declaration, which is probably not what you want
Which I think is because I have a struct that contains a struct.
This is what I am trying to do:
void f2(struct user_data_s* data) {
printf("Number %i\n", data->L);
}
void f1(struct user_data_s* data) {
printf("Number %i\n", data->L);
f2(data);
}
The printf in f1 works, but the line
void f2(struct user_data_s* data) {
gives the error.
Does anyone know how I can fix this?
Hugs, Louise