Determines whether the terminal has insert-line capability.
#include <curses.h>
has_il( )
The has_il subroutine determines whether a terminal has insert-line capability.
The has_il subroutine returns TRUE if terminal has insert-line capability and FALSE, if not.
To determine the insert capability of a terminal by returning TRUE or FALSE into the user-defined variable insert_line , enter:
int insert_line; insert_line = has_il();
This subroutine is part of Base Operating System (BOS) Runtime.
Curses Overview for Programming in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
Understanding Terminals with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.