aboutsummaryrefslogtreecommitdiff
path: root/src/utils/print.h
blob: fb1badd481878e12780d6aeaecda4f0bb8a1db9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PRINT_H
#define PRINT_H


/**
 * Print char
 */
void putchar(char);
void print(char*);
void scrollup();
void clear();

#endif