home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 359_11 / patch5.000 / EMU387 / COMPARE.H < prev    next >
C/C++ Source or Header  |  1991-09-11  |  227b  |  15 lines

  1. #ifndef _COMPARE_H_
  2. #define _COMPARE_H_
  3.  
  4. int compare(reg& a, reg& b);
  5.  
  6. #define COMP_A_GT_B    1
  7. #define COMP_A_EQ_B    2
  8. #define COMP_A_LT_B    3
  9. #define COMP_NOCOMP    4
  10. #define COMP_NAN    0x40
  11. #define COMP_SNAN    0x80
  12.  
  13. #endif
  14.  
  15.