-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloater.h
More file actions
27 lines (24 loc) · 1.08 KB
/
Copy pathfloater.h
File metadata and controls
27 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* :::::::: */
/* floater.h :+: :+: */
/* +:+ */
/* By: jcorneli <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2021/05/02 15:36:55 by jcorneli #+# #+# */
/* Updated: 2021/05/02 15:36:57 by jcorneli ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef FLOATER_H
# define FLOATER_H
typedef union u_double
{
double value;
struct
{
unsigned long long mantissa : 52;
unsigned int exponent : 11;
unsigned int sign : 1;
};
} t_double;
#endif