8 lines
103 B
C
Raw Normal View History

2024-03-07 19:42:38 +08:00
#define _GNU_SOURCE
#include <math.h>
float significandf(float x)
{
return scalbnf(x, -ilogbf(x));
}