addstr(p1)
add a string of characters str, to the window and advance cursor
static VALUE curses_addstr(VALUE obj, VALUE str) { StringValue(str); str = rb_str_export_locale(str); curses_stdscr(); if (!NIL_P(str)) { addstr(StringValueCStr(str)); } return Qnil; }