12 lines
270 B
C
12 lines
270 B
C
#ifndef _ITOA_H_
|
|
#define _ITOA_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
uint32_t heapless_itoa(int32_t value, char *buffer, uint32_t base);
|
|
|
|
uint32_t bytes_to_hex_string(uint8_t *input, uint32_t count, char *output_buffer, bool capitalized);
|
|
|
|
#endif /* _ITOA_H_ */
|