9 lines
147 B
C
9 lines
147 B
C
#ifndef _ITOA_H_
|
|
#define _ITOA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t heapless_itoa(int32_t value, char *buffer, uint32_t base);
|
|
|
|
#endif /* _ITOA_H_ */
|