|
ctermid_r(3) -- generate terminal pathname
|
The ctermid() function generates a string, that, when used as a pathname, refers to the current controlling terminal of the calling process. If buf is the NULL pointer, a pointer to a static area is r... |
ctime(3) -- transform binary date and time values
|
The functions ctime(), gmtime() and localtime() all take as an argument a time value representing the time in seconds since the Epoch (00:00:00 UTC, January 1, 1970; see time(3)). The function localti... |
ctime_r(3) -- transform binary date and time values
|
The functions ctime(), gmtime() and localtime() all take as an argument a time value representing the time in seconds since the Epoch (00:00:00 UTC, January 1, 1970; see time(3)). The function localti... |
ctype(3) -- character classification macros
|
The above functions perform character tests and conversions on the integer c. They are available as macros, defined in the include file , or as true functions in the C library. See the specif... |
current_field(3) -- set and get form page number
|
The function set_current field sets the current field of the given form; current_field returns the current field of the given form. The function set_form_page sets the form's page number (goes to pag... |
current_item(3) -- set and get current_menu_item
|
The function set_current_item sets the current item (the item on which the menu cursor is positioned). current_item returns a pointer to the current item in the given menu. The function set_top_row se... |
curses(3) -- CRT screen handling and optimization package
|
The ncurses library routines give the user a terminal-independent method of updating character screens with reasonable optimization. This implementation is ``new curses'' (ncurses) and is the approv... |
curses_version(3) -- miscellaneous curses extensions
|
These functions are extensions to the curses library which do not fit easily into other categories. Use curses_version() to get the version number, including patch level of the library, e.g., 5.0.1999... |
curs_addch(3) -- add a character (with attributes) to a curses window, then advance the cursor
|
The addch, waddch, mvaddch and mvwaddch routines put the character ch into the given window at its current window position, which is then advanced. They are analogous to putchar in stdio(3). If the ad... |
curs_addchstr(3) -- add a string of characters (and attributes) to a curses window
|
These routines copy chstr into the window image structure at and after the current cursor position. The four routines with n as the last argument copy at most n elements, but no more than will fit on ... |
curs_addstr(3) -- add a string of characters to a curses window and advance cursor
|
These routines write the characters of the (null-terminated) character string str on the given window. It is similar to calling waddch once for each character in the string. The four routines with n a... |
curs_attr(3) -- curses character and window attribute control routines
|
These routines manipulate the current attributes of the named window. The current attributes of a window apply to all characters that are written into the window with waddch, waddstr and wprintw. Attr... |
curs_beep(3) -- curses bell and screen flash routines
|
The beep and flash routines are used to alert the terminal user. The routine beep sounds an audible alarm on the terminal, if possible; otherwise it flashes the screen (visible bell). The routine flas... |