blob: 9c4e5f67e6896604172674905eb4205af0aeedd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
typedef struct
{
unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */
} InternalFPF;
static void SetInternalFPFZero(InternalFPF *dest) {
dest->type=0;
}
void denormalize(InternalFPF *ptr) {
SetInternalFPFZero(ptr);
}
|