home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / DJGPP / DJEMU106.ZIP / EMU387 / COMPARE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-25  |  227 b   |  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.