#ifndef __FP_H #define __FP_H // File Version: 0.01 // // Header file to hold the format_t type. // Nothing else. // // Written by: Omar Akkawi enum format_t { BINARY_POINT, EXPONENT_NOTATION }; // // // // // // // // Really, there's nothing else here. // // // // // // Why won't you believe me? There's nothing else here! // // // // // // // ... forget this, I'm going home... // // // // // // OK, you found it, here it is: the prototype for sprint_half! void sprint_half(char* outbuf, uint16_t f, enum format_t format); #endif