home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Source Code 1993 July
/
THE_SOURCE_CODE_CD_ROM.iso
/
msdos
/
djgpp
/
emu387
/
compare.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-04-25
|
227 b
|
15 lines
#ifndef _COMPARE_H_
#define _COMPARE_H_
int compare(reg& a, reg& b);
#define COMP_A_GT_B 1
#define COMP_A_EQ_B 2
#define COMP_A_LT_B 3
#define COMP_NOCOMP 4
#define COMP_NAN 0x40
#define COMP_SNAN 0x80
#endif