I'm having some trouble with some struct typedef declarations in a header file not seeming to go through to my implementation file.
Specifically, I have the following types defined: Type, Value, Integer, ...
I've been using the following code to create various struct, but only give people outside of the C file a pointer to it. (Yes, I know that they could potentially ...
I have one .c file and one .h.
I am not planning to have more than one .c file.
Should I put structure definition in the header file?
what is the best ...