home *** CD-ROM | disk | FTP | other *** search
- /* patrec.str -- patient record structure */
- /* revised for Amiga, 7/4/87 */
-
- /* PATREC - structure for the patient record file */
-
- #define SZ_PATREC 128 /* size of disk record */
- #define PATREC struct _patrec
- PATREC
- {
- char lname[19];
- char fname[13];
- char minit[2];
- char addr[36];
- char hphone[13];
- char ssn[10];
- char patfill[SZ_PATREC-19-13-2-36-13-10];
- };
-