***************************************************************************
Copyright 2018-2024,2025 Thomas E. Dickey *
Copyright 1998-2010,2017 Free Software Foundation, Inc. *
*
Permission is hereby granted, free of charge, to any person obtaining a *
copy of this software and associated documentation files (the *
"Software"), to deal in the Software without restriction, including *
without limitation the rights to use, copy, modify, merge, publish, *
distribute, distribute with modifications, sublicense, and/or sell *
copies of the Software, and to permit persons to whom the Software is *
furnished to do so, subject to the following conditions: *
*
The above copyright notice and this permission notice shall be included *
in all copies or substantial portions of the Software. *
*
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
*
Except as contained in this notice, the name(s) of the above copyright *
holders shall not be used in advertising or otherwise to promote the *
sale, use or other dealings in this Software without prior written *
authorization. *
***************************************************************************
$Id: curs_inch.3x,v 1.70 2025/02/15 19:36:03 tom Exp $
#include <curses.h>chtype inch(void); chtype winch(WINDOW * win); chtype mvinch(int y, int x); chtype mvwinch(WINDOW * win, int y, int x);
In \%ncurses "," they return ERR if win is NULL "."
Functions prefixed with \*(``mv\*('' first perform cursor movement and fail if the position ( y , x ) is outside the window boundaries.
These functions do not fail if the window contains cells of curses complex characters; that is, if they contain characters with codes wider than eight bits (or greater than 255 as an unsigned decimal integer). They instead extract only the low-order eight bits of the character code from the cell.
SVr2
curses (1984)
extended this approach,
widening the character code to eight bits
and permitting several attributes to be combined with it
by storing them together in a
\%chtype "," an alias of
"unsigned short" "." ...indirectly through a preprocessor macro named CHTYPE, encouraging
builders to change the typedef to `char` or `long` as desired. More
innocent times with respect to ABI compatibility concerns... --GBR
Because a macro was used,
its value was not type-checked
as a function return value could have been.
Goodheart documented SVr3 (1987)
\%winch as returning an
int "." ...but the implementation remained unchanged.
SVr3.1's (1987)
\%chtype became an alias of
"unsigned long" "," using 16 bits for the character code and
widening the type in practical terms to 32 bits,
as 64-bit Unix systems were not yet in wide use,
and fixed-width integral types would not be standard until ISO C99.
Cray's UNICOS was 1985 (how many shops had Crays?). DEC OSF/1 for
the Alpha arrived in 1993. --GBR
SVr3.2 (1988)
added a 6-bit color pair identifier alongside the attributes.
\%curses(3X), \%curs_instr(3X)