home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / tvision / vlstde / structs.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-12  |  366 b   |  20 lines

  1. // STRUCTS.HPP
  2. //    written by Gregory K. Miskin
  3. //    COPYRIGHT (C) 1992.  All Rights Reserved.
  4. //    Gregory K. Miskin, Orem, Utah  USA
  5.  
  6. #ifndef __structs_hpp__
  7. #define __structs_hpp__
  8.  
  9. typedef struct
  10. {
  11.     char  fname    [16];
  12.     char  lname    [16];
  13.     char  street   [31];
  14.     char  city     [21];
  15.     char  state    [3];
  16.     char  zip      [6];
  17. } sfFields;
  18.  
  19. #endif
  20.