Untitled_Kernel/include/kttools.h
lordtet 8734cd4da6 Added some functions, did some reorganizing.
kttools.h/c is a lib for converting types (only currently contains
i_to_str).

Also added a printf for i/o.
2025-06-08 16:18:06 -04:00

7 lines
126 B
C

#ifndef KTTOOLS_H
#define KTTOOLS_H
#include <stdint.h>
void i_to_str(uint32_t num, char* buf, int size, int radix);
#endif