2024-07-16 22:51:41 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
void print_hex_digit(uint8_t digit);
|
|
|
|
void print_hex_byte(uint8_t byte);
|
|
|
|
void print_hex_bytes(void* bytes, size_t len);
|
2024-08-10 14:37:31 +02:00
|
|
|
void print_heap();
|