addwstr
extern int addwstr(const wchar_t *);
#define mvaddwstr(y,x,wcs) (move(y,x)?ERR:addwstr(wcs))
(move(y, x) ? (wcs, ERR) : addwstr(wcs))