| Main index | Section 3 | Options |
#include <curses.h>int add_wchstr(const cchar_t *wchstr); int wadd_wchstr(WINDOW * win, const cchar_t *wchstr); int mvadd_wchstr(int y, int x, const cchar_t *wchstr); int mvwadd_wchstr(WINDOW *win, int y, int x, const cchar_t *wchstr);
int add_wchnstr(const cchar_t *wchstr, int n); int wadd_wchnstr(WINDOW * win, const cchar_t *wchstr, int n); int mvadd_wchnstr(int y, int x, const cchar_t *wchstr, int n); int mvwadd_wchnstr(WINDOW *win, int y, int x, const cchar_t *wchstr, int n);
The four functions with n as the last argument copy at most n elements, but no more than will fit on the line. If n=-1 then the whole array is copied, to the maximum number of characters that will fit on the line.
The window cursor is not advanced. These functions are faster than waddnstr. On the other hand:
| &#187; | they do not perform checking (such as for the newline, backspace, or carriage return characters), |
| &#187; | they do not advance the current cursor position, |
| &#187; | they do not expand other control characters to ^-escapes, and |
| &#187; | they truncate the string if it crosses the right margin, rather than wrapping it around to the new line. |
X/Open Curses does not specify any error conditions. This implementation returns an error
| &#187; | if the win parameter is null or |
| &#187; | if the wchstr parameter is null. |
curses(3X), curs_addwstr(3X), curs_add_wch(3X)
| 2024-04-20 | curs_add_wchstr (3X) | ncurses 6.5 |
| Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
