/* * Copyright (C) 2021 Tomasz Kramkowski * SPDX-License-Identifier: MIT */ #ifndef PACK_IEEE754B_H #define PACK_IEEE754B_H #include float ieee754b32_deserialise(uintmax_t b32); double ieee754b64_deserialise(uintmax_t b64); uintmax_t ieee754b32_serialise(float f); uintmax_t ieee754b64_serialise(double d); #endif // !PACK_IEEE754B_H