13 lines
316 B
C
13 lines
316 B
C
#ifndef MEM_UTILS_H_
|
|
#define MEM_UTILS_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
char *mem_alloc_and_copy_char(char c);
|
|
void *mem_alloc_and_copy(const void *data, size_t size);
|
|
char *mem_alloc_and_format_uint(uint32_t value,
|
|
uint8_t *const written_chars);
|
|
|
|
#endif // MEM_UTILS_H_
|