Hey everyone,
I'm attempting to write a header file, example.h that will contain function declarations that will be defined in example.c. For some reason Its giving me an error when i do this
extern void mainMenu(node*);
Now node is a struct defined in another header file, should I include that as an extern variable as well?
Something like extern struct node; ??
Thanks for the help in advance.