mvaddch
mvaddch(int y, int x, chtype ch)
#define mvaddch(y,x,ch) (move(y,x)?ERR:addch(ch))
#define mvaddch(y, x, ch) (move(y, x) ? ((ch), ERR) : addch(ch))
#undef mvaddch
mvaddch(int y, int x, chtype ch)
#define mvaddch(y, x, ch) mvwaddch(stdscr, y, x, ch)