repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. use library function to parse memory string
[minix3.git]
/
lib
/
curses
/
flash.c
blob
2de45606c718efb3b70926d29f91eabae6349f57
1
#include <curses.h>
2
#include
"curspriv.h"
3
#include <termcap.h>
4
5
extern
char
*
bl
, *
vb
;
6
7
/* Flash() flashes the terminal screen. */
8
void
flash
()
9
{
10
if
(
vb
)
11
tputs
(
vb
,
1
,
outc
);
12
else if
(
bl
)
13
tputs
(
bl
,
1
,
outc
);
14
}