788908bdb2ec68bfe1b90d6f86bf47aa43492957
[reactos.git] / reactos / include / crtdll / internal / ieee.h
1 #ifndef _IEEE_H
2 #define _IEEE_H
3
4 typedef struct {
5 unsigned int mantissa:23;
6 unsigned int exponent:8;
7 unsigned int sign:1;
8 } float_t;
9
10 typedef struct {
11 unsigned int mantissal:32;
12 unsigned int mantissah:20;
13 unsigned int exponent:11;
14 unsigned int sign:1;
15 } double_t;
16
17 typedef struct {
18 unsigned int mantissal:32;
19 unsigned int mantissah:32;
20 unsigned int exponent:15;
21 unsigned int sign:1;
22 unsigned int empty:16;
23 } long_double_t;
24
25 #endif