gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:isunordered from t2ex/bsd_source/lib/libc/src_bsd/include/math.h (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
95: 
96: #define isgreater(x, y)         (!isunordered((x), (y)) && (x) > (y))
97: #define isgreaterequal(x, y)    (!isunordered((x), (y)) && (x) >= (y))
98: #define isless(x, y)            (!isunordered((x), (y)) && (x) < (y))
99: #define islessequal(x, y)       (!isunordered((x), (y)) && (x) <= (y))
100: #define islessgreater(x, y)     (!isunordered((x), (y)) && \
101:                                         ((x) > (y) || (y) > (x)))