home *** CD-ROM | disk | FTP | other *** search
- // STRUCTS.HPP
- // written by Gregory K. Miskin
- // COPYRIGHT (C) 1992. All Rights Reserved.
- // Gregory K. Miskin, Orem, Utah USA
-
- #ifndef __structs_hpp__
- #define __structs_hpp__
-
- typedef struct
- {
- char fname [16];
- char lname [16];
- char street [31];
- char city [21];
- char state [3];
- char zip [6];
- } sfFields;
-
- #endif
-