mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-15 10:35:20 -08:00
12 lines
243 B
C
12 lines
243 B
C
#ifndef PRINT_H
|
|
#define PRINT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void print_string(const char *str);
|
|
void my_printf(const char *format, ...);
|
|
void print_hex(uint32_t val, int include_prefix, int suppress_leading_zeros);
|
|
void my_putchar(char ch);
|
|
|
|
#endif
|