summaryrefslogtreecommitdiff
path: root/kernel/console.h
blob: 93008ab2f3352bdcb5724207c24dc55af4d062c8 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CONSOLE_H
#define CONSOLE_H


void console_init();
void console_put_char(char);
void console_put_str(char *);


#endif