home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_08 / 2n08072a < prev    next >
Text File  |  1991-07-01  |  304b  |  22 lines

  1.  
  2.  
  3.  
  4.                Listing 1: Alignment by Pragma
  5.  
  6.  
  7.      // Tell Borland C++ to use word alignment
  8.      pragma option -a
  9.  
  10.      struct foo_t
  11.          {
  12.          char c1;
  13.          word w;
  14.          char c2;
  15.          };
  16.      
  17.      // Reset alignment to default
  18.      #pragma option -a.
  19.  
  20.  
  21.  
  22.