blob: bdfefa0e3f8fad9d5888951625ba05460f491ce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* con.h
*
* Basic VGA text console. Implements printf() and puts().
*/
#ifndef _CON_H
#define _CON_H
void con_init(void);
int puts(char *s);
int printf(char*, ...);
#endif
|