Still need to document a lot of functions, but I cleaned up and explained a lot of the code via comments.
12 lines
226 B
C
12 lines
226 B
C
/* kttools.h
|
|
* Kernel Type Tools
|
|
*
|
|
* Library for converting types and transcribing data.
|
|
*/
|
|
#ifndef KTTOOLS_H
|
|
#define KTTOOLS_H
|
|
#include <stdint.h>
|
|
|
|
void i_to_str(uint32_t num, char* buf, int size, int radix);
|
|
|
|
#endif
|