home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_06 / 8n06074c < prev    next >
Text File  |  1990-05-01  |  333b  |  14 lines

  1. *****Listing 7*****
  2.  
  3.    static struct s_record print_record;    
  4.  
  5.    #define NUMBER_FIELDS 9
  6.    int record_field_offsets[NUMBER_FIELDS] = 
  7.        {
  8.        print_record.firstname - (char *) &print_record,
  9.        print_record.lastname - (char *) &print_record,
  10.         ...
  11.        /* Remainder of the offsets */
  12.        };
  13.  
  14.