1 2 3 4 5 6 7 8 9 10
#ifndef LIB_H_ #define LIB_H_ #include <stdint.h> void hexify(uint32_t v, char* into); void decimalify(int v, char* into); #endif