How to declare a structure in a header that is to be used by multiple files in c?
if this structure is to be used by some other file func.c how to do it? When a type is used in a file (i.e. func.c file), it must be visible. The very worst way to do it is copy paste it in each source file needed it. The right way is putting it in … Read more