diff options
| author | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-09-08 15:09:30 +0200 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksav013@gmail.com> | 2022-09-08 19:43:05 +0200 |
| commit | 1d673e7e628db462215abcec06641063a6165b9b (patch) | |
| tree | 07915d1bba39a39afe7cc9dcf9806caf833fc774 /kernel/include/libk/stdio.h | |
| parent | 82e9f02aef1ea1a6588234ee58e3625e3561005f (diff) | |
fixed output glitches
Diffstat (limited to 'kernel/include/libk/stdio.h')
| -rw-r--r-- | kernel/include/libk/stdio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/include/libk/stdio.h b/kernel/include/libk/stdio.h index 99064f9..fc7b8e8 100644 --- a/kernel/include/libk/stdio.h +++ b/kernel/include/libk/stdio.h @@ -6,6 +6,10 @@ extern uint32_t curr_x; extern uint32_t curr_y; +void print_char(char c); +void print_string(const char* s); +void print_int(uint64_t num); +void print_hex(uint64_t num); void printf(const char *s, ...); #endif |
