/* person.c */ #include #include #include "person.h" void initPerson( PERSON_TYPE *p, char *name, float height ) { strcpy( p->name,name ); p->height = height; } // end of initPerson() void printPerson( PERSON_TYPE *p ) { printf( "name = [%s]\n",p->name ); printf( "height = %5.2f inches\n",p->height ); } // end of printPerson()