#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