home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c023 / 1.img / PROGRAMS / PATREC.STR < prev    next >
Encoding:
Text File  |  1987-11-05  |  393 b   |  18 lines

  1.     /*   patrec.str  --    patient record structure  */
  2.     /*                        revised for Amiga, 7/4/87 */
  3.  
  4.     /*    PATREC - structure for the patient record file    */
  5.  
  6. #define SZ_PATREC 128    /* size of disk record */
  7. #define PATREC struct _patrec
  8. PATREC
  9. {
  10.     char lname[19];
  11.     char fname[13];
  12.     char minit[2];
  13.     char addr[36];
  14.     char hphone[13];
  15.     char ssn[10];
  16.     char patfill[SZ_PATREC-19-13-2-36-13-10];
  17. };
  18.