summaryrefslogtreecommitdiff
path: root/stage3/font.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2024-04-11 21:12:12 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2024-04-11 21:12:12 +0200
commit01731e6e89d44ac7e7ab675e4e597474d1b5180a (patch)
treea8cda10345b3254cdadeac41a453e504386b33de /stage3/font.h
parent8b90c1f407b4f4aa3802858e23aa90d7dfbe17ad (diff)
downloadcuddles-01731e6e89d44ac7e7ab675e4e597474d1b5180a.tar.xz
move print_bytes to font.c
Diffstat (limited to 'stage3/font.h')
-rw-r--r--stage3/font.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stage3/font.h b/stage3/font.h
index 44019bb..34c4780 100644
--- a/stage3/font.h
+++ b/stage3/font.h
@@ -24,5 +24,6 @@ void print_hex(u64 x);
void print_num(u64 x, u8 base);
void print_num_pad(u64 x, u8 base, u8 pad_len, char pad_char);
void print_dbl(double d, u8 points);
+void print_bytes(usize bytes);
#endif