Files
ClassicOS/kernel/print.h

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