repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git]
/
arch
/
x86_64-pc
/
bootstrap
/
screen.h
blob
1600dab792a709a081080e43f263a608bccf0e8f
1
#ifndef SCREEN_H_
2
#define SCREEN_H_
3
4
void
clr
();
5
void
Putc
(
char
);
6
void
scr_RawPutChars
(
char
*,
int
);
7
void
kprintf
(
const char
*, ...);
8
9
#endif
/*SCREEN_H_*/