9 lines
200 B
C
9 lines
200 B
C
#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);
|
|
void print_heap();
|