diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-07 08:58:58 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-07 08:58:58 +0000 |
| commit | c0e33523c8e3d21cb5380c0841957837c7394f3e (patch) | |
| tree | 99abbe20269799a309141ce09de6537162005126 /lib/libncurses/TESTS/corner.c | |
| parent | d456d8f48d7d76f450ee5299193ba604a20d44de (diff) | |
Notes
Diffstat (limited to 'lib/libncurses/TESTS/corner.c')
| -rw-r--r-- | lib/libncurses/TESTS/corner.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/libncurses/TESTS/corner.c b/lib/libncurses/TESTS/corner.c new file mode 100644 index 000000000000..2ab38a982af8 --- /dev/null +++ b/lib/libncurses/TESTS/corner.c @@ -0,0 +1,16 @@ +#include <ncurses.h> + +int main() +{ +int i, j; + + initscr(); + + for (i = 0; i < LINES; i++) { + j = mvaddch(i, COLS - 1, 'A' + i); + } + refresh(); + endwin(); + exit(0); +} + |
