LINES-begy and COLS-begx. A new full-screen
window is created by calling newwin(0,0,0,0).
touchwin or touchline on orig
before calling force-output.
force-output copies
the window win to the physical terminal screen, taking into
account what is already there in order to minimize the amount of
information that's sent to the terminal (called optimization). Unless
leaveok has been enabled, the physical cursor of the terminal is
left at the location of window win's cursor. With refresh,
the number of characters output to the terminal is returned.
These routines overlay srcwin on top of dstwin; that is, all
text in srcwin is copied into dstwin. srcwin and
dstwin need not be the same size; only text where the two windows
overlap is copied. The difference is that overlay is
non-destructive (blanks are not copied), while overwrite is
destructive.
touchline only pretends that
count lines have been changed, beginning with line start.
refresh (or force-output) is called. The position
specified is relative to the upper left corner of the window win,
which is (0, 0).