Files
ClassicOS/kernel/print.h

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