Ejemplo n.º 1
0
int
mvwinchstr(WINDOW *win, int y, int x, chtype *chstr)
{
	if (wmove(win, y, x) == ERR)
		return ERR;

	return winchstr(win, chstr);
}
Ejemplo n.º 2
0
EIF_INTEGER c_ecurses_winchstr (EIF_POINTER w, EIF_POINTER chstr )
{
    return  winchstr( ((WINDOW *) w)  , (chtype*) chstr) ;
};
Ejemplo n.º 3
0
int
mvinchstr(int y, int x, chtype *s)
{
	return (wmove(stdscr, y, x) == ERR ? ERR : winchstr(stdscr, s));
}
Ejemplo n.º 4
0
int
inchstr(chtype *chstr)
{
	return winchstr(stdscr, chstr);
}
Ejemplo n.º 5
0
int
mvwinchstr(WINDOW *win, int y, int x, chtype *str)
{
	return (wmove(win, y, x) == ERR ? ERR : winchstr(win, str));
}