// InChar returns the character at the current position in the curses window func (w *Window) InChar() Char { return Char(C.winch(w.win)) }
func (win *Window) Inch() chtype { return chtype(C.winch((*C.WINDOW)(win))) }