mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-10-13 13:15:07 -07:00
10 lines
178 B
C
10 lines
178 B
C
#ifndef PRINT_H
|
|
#define PRINT_H
|
|
|
|
void print_string(const char *str);
|
|
void my_printf(const char *format, ...);
|
|
void print_hex(unsigned int num);
|
|
void my_putchar(char ch);
|
|
|
|
#endif
|