#ifndef __FP_H #define __FP_H // File Version: 0.01 // // Simple header file for the required functions // // Originally written by: Omar Akkawi // Adopted by: Noah Johnson void sprint_float(char* outbuf, uint64_t input, int exp_bits, int mant_bits); int can_represent(int exp_bits, int mant_bits, int target); #endif