added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / arch / x86_64-pc / bootstrap / screen.h
blob1600dab792a709a081080e43f263a608bccf0e8f
1 #ifndef SCREEN_H_
2 #define SCREEN_H_
4 void clr();
5 void Putc(char);
6 void scr_RawPutChars(char *, int);
7 void kprintf(const char *, ...);
9 #endif /*SCREEN_H_*/