Unix and Linux Discussions Tagged with insert |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
9 |
7,580 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,368 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,298 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,621 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,312 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
2,548 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,463 |
Shell Programming and Scripting |
|
|
|
1 |
3,695 |
Shell Programming and Scripting |
|
|
|
2 |
8,562 |
Shell Programming and Scripting |
|
|
|
7 |
9,535 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
2,868 |
Shell Programming and Scripting |
|
|
|
5 |
2,803 |
Shell Programming and Scripting |
|
|
|
9 |
5,687 |
Shell Programming and Scripting |
|
|
|
8 |
8,832 |
Shell Programming and Scripting |
|
|
|
5 |
3,526 |
Shell Programming and Scripting |
|
|
|
10 |
3,425 |
Shell Programming and Scripting |
|
|
|
7 |
4,066 |
Shell Programming and Scripting |
|
|
|
1 |
2,569 |
Shell Programming and Scripting |
|
|
|
12 |
4,820 |
Shell Programming and Scripting |
|
|
|
0 |
16,603 |
Shell Programming and Scripting |
|
|
|
2 |
6,340 |
Shell Programming and Scripting |
|
|
|
1 |
3,666 |
Programming |
|
|
|
2 |
26,947 |
Shell Programming and Scripting |
|
|
|
3 |
4,675 |
Shell Programming and Scripting |
|
|
|
2 |
25,989 |
Shell Programming and Scripting |
|
|
|
3 |
1,854 |
Shell Programming and Scripting |
|
|
|
2 |
3,198 |
Shell Programming and Scripting |
|
|
|
0 |
1,727 |
UNIX and Linux RSS News |
|
|
|
1 |
2,780 |
Solaris |
|
|
|
6 |
10,363 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,424 |
Shell Programming and Scripting |
|
|
|
2 |
7,626 |
Shell Programming and Scripting |
|
|
|
6 |
2,738 |
Shell Programming and Scripting |
|
|
|
1 |
2,468 |
Shell Programming and Scripting |
|
|
|
8 |
8,151 |
Shell Programming and Scripting |
|
|
|
6 |
13,452 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,507 |
Shell Programming and Scripting |
|
|
|
2 |
12,735 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,877 |
AIX |
|
|
|
5 |
3,759 |
Shell Programming and Scripting |
has_ic(3XCURSES) X/Open Curses Library Functions has_ic(3XCURSES)
NAME
has_ic, has_il - determine insert/delete character/line capability
SYNOPSIS
cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib
-R /usr/xpg4/lib -lcurses [ library... ]
c89 [ flag... ] file... -lcurses [ library... ]
#include <curses.h>
bool has_ic(void);
bool has_il(void);
DESCRIPTION
The has_ic() function determines whether or not the terminal has insert/delete character capability.
The has_il() function determines whether or not the terminal has insert/delete line capability.
RETURN VALUES
The has_ic() function returns TRUE if the terminal has insert/delete character capability and FALSE otherwise.
The has_il() function returns TRUE if the terminal has insert/delete line capability and FALSE otherwise.
ERRORS
None.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
|MT-Level |Unsafe |
+-----------------------------+-----------------------------+
SEE ALSO
libcurses(3XCURSES), attributes(5), standards(5)
SunOS 5.11 5 Jun 2002 has_ic(3XCURSES)