I\'ve seen both full definitions of structs in headers and just declarations—is there any advantage to one method over the other?
If it makes a differen
Generally, I don't think it makes a huge difference whether you put them in the header or source files. However, if you need to access the members of a structure from multiple source files, it is easier to put the structure in a header file and include it from any other files where the structure is needed.