bringelle/src/utils/print.h

14 lines
134 B
C
Raw Normal View History

2021-04-04 11:19:55 +02:00
#ifndef PRINT_H
#define PRINT_H
2021-04-04 14:03:26 +02:00
/**
* Print char
*/
2021-04-04 11:19:55 +02:00
void putchar(char);
2021-04-04 14:03:26 +02:00
void print(char*);
void scrollup();
void clear();
2021-04-04 11:19:55 +02:00
#endif