/********************************************************* * * phone.h * * Basic data structure definitions for the phone book * example. * *********************************************************/ #define NAMELENGTH 20 #define PHONELENGTH 10 #ifndef TRUE #define TRUE 1 #endif struct phone_struct { char name[NAMELENGTH]; char phone[PHONELENGTH]; }; void read_phone_file (FILE*); char* get_phone_number (char*); /*-----------------end of phone.h---------------------------------*/