Unix and Linux Discussions Tagged with insert |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
9 |
2,205 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,926 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,407 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,137 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,509 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
903 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
704 |
Shell Programming and Scripting |
|
|
|
1 |
1,813 |
Shell Programming and Scripting |
|
|
|
2 |
5,646 |
Shell Programming and Scripting |
|
|
|
7 |
6,367 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
1,822 |
Shell Programming and Scripting |
|
|
|
5 |
2,091 |
Shell Programming and Scripting |
|
|
|
9 |
3,441 |
Shell Programming and Scripting |
|
|
|
8 |
7,152 |
Shell Programming and Scripting |
|
|
|
5 |
2,892 |
Shell Programming and Scripting |
|
|
|
10 |
2,570 |
Shell Programming and Scripting |
|
|
|
7 |
3,011 |
Shell Programming and Scripting |
|
|
|
1 |
1,939 |
Shell Programming and Scripting |
|
|
|
12 |
3,803 |
Shell Programming and Scripting |
|
|
|
0 |
13,956 |
Shell Programming and Scripting |
|
|
|
2 |
4,887 |
Shell Programming and Scripting |
|
|
|
1 |
3,090 |
Programming |
|
|
|
2 |
24,298 |
Shell Programming and Scripting |
|
|
|
3 |
3,773 |
Shell Programming and Scripting |
|
|
|
2 |
22,680 |
Shell Programming and Scripting |
|
|
|
3 |
1,471 |
Shell Programming and Scripting |
|
|
|
2 |
2,350 |
Shell Programming and Scripting |
|
|
|
0 |
1,327 |
UNIX and Linux RSS News |
|
|
|
1 |
2,134 |
Solaris |
|
|
|
6 |
8,458 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
1,848 |
Shell Programming and Scripting |
|
|
|
2 |
5,319 |
Shell Programming and Scripting |
|
|
|
6 |
2,155 |
Shell Programming and Scripting |
|
|
|
1 |
1,790 |
Shell Programming and Scripting |
|
|
|
8 |
7,360 |
Shell Programming and Scripting |
|
|
|
6 |
10,963 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,667 |
Shell Programming and Scripting |
|
|
|
2 |
10,496 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,958 |
AIX |
|
|
|
5 |
3,125 |
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.10 5 Jun 2002 has_ic(3XCURSES)