It depends on how you intend for your users to use the structure. If they are allowed to instantiate and modify the members then you need to place the definition in the header file. On the other hand, if the users do not need to have access to the structure members you should place it in the .c file.
Let's assume it's the latter case. If so, cow_t is opaque to the users and you'll need to create accessor functions for it. For instance:
cow_t *CreateCow( void )
{
return malloc( cow_t );
}
void SacrificeCow( cow_t *cow )
{
free( cow );
}
int GetNumberOfCowLegs( cow_t *cow )
{
return cow->legs;
}
void SetNumberOfCowLegs( cow_t *cow, int numLegs )
{
cow->legs = numLegs;
}
.cfile in the future? – evnu Jul 14 '11 at 6:39