repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bump copyright date on affected files and version
[AROS.git]
/
arch
/
all-native
/
bootconsole
/
clear.c
blob
8739637142c768b9b1f2e82ebfdc5270f01f7e89
1
#include <bootconsole.h>
2
3
/* Clear the console */
4
void
con_Clear
(
void
)
5
{
6
switch
(
scr_Type
)
7
{
8
case
SCR_TEXT
:
9
txt_Clear
();
10
break
;
11
12
case
SCR_GFX
:
13
fb_Clear
();
14
break
;
15
}
16
}