manual page distributed with 4.1BSD
[unix-history] / usr / src / lib / libcurses / idlok.c
CommitLineData
02115eb4
JB
1# include "curses.ext"
2
3/*
4 * idlok:
5 * Turn on and off using insert/deleteln sequences for the given
6 * window.
7 *
8 * @(#)idlok.c 1.1 (Berkeley) %G%
9 */
10idlok(win, bf)
11register WINDOW *win;
12bool bf;
13{
14 if (bf)
15 win->_flags |= _IDLINE;
16 else
17 win->_flags &= ~_IDLINE;
18}