source:
trunk/minix/lib/curses/flash.c@
20
| Last change on this file since 20 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 214 bytes | |
| Line | |
|---|---|
| 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 | } |
Note:
See TracBrowser
for help on using the repository browser.