os/include/debugging.h

9 lines
210 B
C
Raw Normal View History

#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
char get_last_key_pressed();
void print_hex_digit(uint8_t digit);
void print_hex_byte(uint8_t byte);
void print_hex_bytes(void* bytes, size_t len);