8 lines
126 B
C
8 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
|