typedef struct myStruct ( int m_i_nrecs; /* How many records? */ record *m_ptr_records /* the records */ } RecordTable; /** *** initRecordTable(n) -- set up the record table *** *** Parameters: *** n (int) how many records do we allocate? *** *** Returns: *** (void) **/ void initRecordTable(n) int n; { /** blah...blah... blah... ***/