mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
13 lines
206 B
C
13 lines
206 B
C
#ifndef LIBA_IEEE754_H
|
|
#define LIBA_IEEE754_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t ieee754man32(float x);
|
|
uint8_t ieee754exp32(float x);
|
|
|
|
uint64_t ieee754man64(double x);
|
|
uint16_t ieee754exp64(double x);
|
|
|
|
#endif
|