setpos(p1, p2)
A setter for the position of the cursor, using coordinates x and y
static VALUE curses_setpos(VALUE obj, VALUE y, VALUE x) { curses_stdscr(); move(NUM2INT(y), NUM2INT(x)); return Qnil; }