/* kttools.h * Kernel Type Tools * * Library for converting types and transcribing data. */ #ifndef KTTOOLS_H #define KTTOOLS_H #include void i_to_str(uint32_t num, char* buf, int size, int radix); #endif