|
|
#include <curses.h>int inchnstr(chtype *chstr, int n);
int inchstr(chtype *chstr);
int mvinchnstr(int y, int x, chtype *chstr, int n);
int mvinchstr(int y, int x, chtype *chstr);
int mvwinchnstr(WINDOW *win, int y, int x, chtype *chstr, int n);
int mvwinchstr(WINDOW *win, int y, int x, chtype *chstr);
int winchnstr(WINDOW *win, chtype *chstr, int n);
int winchstr(WINDOW *win, chtype *chstr);
The inchnstr(3curses), mvinchnstr(3curses), mvwinchnstr(3curses) and winchnstr(3curses) functions store at most n elements from the current or specified window into the array pointed to by chstr.