#ifndef PRINT_H #define PRINT_H /** * Print char */ void putchar(char); void print(char*); void scrollup(); void clear(); #endif