1: /*
   2:  * structure to access an
   3:  * integer in bytes
   4:  */
   5: struct
   6: {
   7:     char    lobyte;
   8:     char    hibyte;
   9: };
  10: 
  11: /*
  12:  * structure to access an integer
  13:  */
  14: struct
  15: {
  16:     int integ;
  17: };
  18: 
  19: /*
  20:  * structure to access a long as integers
  21:  */
  22: struct {
  23:     int hiword;
  24:     int loword;
  25: };
  26: 
  27: /*
  28:  *	structure to access an unsigned
  29:  */
  30: struct {
  31:     unsigned    unsignd;
  32: };
Last modified: 1981-09-07
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 552
Valid CSS Valid XHTML 1.0 Strict