mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
7 lines
128 B
C
7 lines
128 B
C
#include <math.h>
|
|
#include <private/ieee754.h>
|
|
|
|
int isinff(float x) {
|
|
return (ieee754exp(x) == 0xFF && ieee754man(x) == 0);
|
|
}
|