Move the cursor at the position (y,x) and print a string

NOTE: as with the curses API, the position is (y,x)

Property definitions

curses $ Window :: mvaddstr
	# Move the cursor at the position (y,x) and print a string
	# NOTE: as with the curses API, the position is (y,x)
	fun mvaddstr(y,x: Int, str: String) import String.to_cstring `{
		char *c_string = String_to_cstring( str );
		mvaddstr(y, x, c_string);
	`}
lib/curses/curses.nit:38,2--43,3