*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: curses_echochar | Section: 3 | Source: MINIX | File: curses_echochar.3
CURSES_ECHOCHAR(3) FreeBSD Library Functions Manual CURSES_ECHOCHAR(3) NAME curses_echochar, echochar, wechochar, pechochar - curses add characters and then refresh routines LIBRARY Curses Library (libcurses, -lcurses) SYNOPSIS #include <curses.h> int echochar(const chtype ch); int wechochar(WINDOW *win, const chtype ch); int pechochar(WINDOW *pad, const chtype ch); DESCRIPTION These functions add characters to stdscr or to the specified window or pad and then cause an immediate refresh() of that window or pad. The echochar() function adds the character given in ch to stdscr at the current cursor position and advances the current cursor position by one. Any character attributes set in ch will be merged with the background attributes currently set on stdscr. stdscr is then refreshed. Calling echochar() is equivalent to calling addch() followed by refresh(). The wechochar() function is the same as the echochar() function, excepting that the character is added to the window specified by win and win is refreshed. The pechochar() function is the similar to the echochar() function, excepting that the character is added to the pad specified by pad and pad is refreshed at its previous location on the screen. Calling pechochar() is equivalent to calling addch() followed by prefresh(). RETURN VALUES These functions will return one of the following values: OK The function completed successfully. ERR An error occurred in the function. SEE ALSO curses_addch(3), curses_attributes(3), curses_pad(3), curses_refresh(3) STANDARDS The echochar(), wechochar(), and pechochar() functions comply with the X/Open Curses specification, part of the Single Unix Specification. HISTORY The Curses package appeared in 4.0BSD. FreeBSD 14.1-RELEASE-p8 March 27, 2004 FreeBSD 14.1-RELEASE-p8

Navigation Options