ok - that sounds maybe like what I'm looking for...

Your saying I should put something like the following into a header file and include the header file in all the source files, instead of declaring them globaly?

Code:
typedef struct person
{
	char lastName[20];
	char firstName[20];
	char age[4];
	char position[20];
} person;