/* * con.h * * Basic VGA text console. Implements printk(). */ #ifndef _CON_H #define _CON_H void con_init(void); void con_clear(void); int printk(char*, ...); #endif