|
tree(3) -- implementations of splay and redblack trees
|
These macros define data structures for different types of trees: splay trees and red-black trees. In the macro definitions, TYPE is the name tag of a user defined structure that must contain a field ... |
tsearch(3) -- manipulate binary search trees
|
The tdelete(), tfind(), tsearch(), and twalk() functions manage binary search trees based on algorithms T and D from Knuth (6.2.2). The comparison function passed in by the user has the same style of ... |
|
ttyname(3) -- get name of associated terminal (tty) from file descriptor
|
These functions operate on the system file descriptors for terminal type devices. These descriptors are not related to the standard I/O FILE typedef, but refer to the special device files found in /de... |
ttyname_r(3) -- get name of associated terminal (tty) from file descriptor
|
These functions operate on the system file descriptors for terminal type devices. These descriptors are not related to the standard I/O FILE typedef, but refer to the special device files found in /de... |
ttyslot(3) -- get name of associated terminal (tty) from file descriptor
|
These functions operate on the system file descriptors for terminal type devices. These descriptors are not related to the standard I/O FILE typedef, but refer to the special device files found in /de... |
twalk(3) -- manipulate binary search trees
|
The tdelete(), tfind(), tsearch(), and twalk() functions manage binary search trees based on algorithms T and D from Knuth (6.2.2). The comparison function passed in by the user has the same style of ... |
typeahead(3) -- curses input options
|
Normally, the tty driver buffers typed characters until a newline or carriage return is typed. The cbreak routine disables line buffering and erase/kill character-processing (interrupt and flow contro... |
tzset(3) -- initialize time conversion information
|
tzset() uses the value of the environment variable TZ to set time conversion information used by localtime(3). If TZ does not appear in the environment, the best available approximation to local wall ... |
tzsetwall(3) -- initialize time conversion information
|
tzset() uses the value of the environment variable TZ to set time conversion information used by localtime(3). If TZ does not appear in the environment, the best available approximation to local wall ... |
ualarm(3) -- schedule signal after specified time
|
This is a simplified interface to setitimer(2). The ualarm() function waits a count of microseconds before asserting the terminating signal SIGALRM. System activity or time used in processing the call... |
uname(3) -- get system identification
|
The uname() function stores null-terminated strings of information identifying the current system into the structure referenced by name. The utsname structure is defined in the header ... |
uncompress(3) -- zlib general purpose compression library
|
This manual page describes the zlib general purpose compression library, version 1.1.4. The zlib compression library provides in-memory compression and decompression functions, including integrity che... |
unctrl(3) -- miscellaneous curses utility routines
|
The unctrl macro expands to a character string which is a printable representation of the character c. Control characters are displayed in the ^X notation. Printing characters are displayed as is. The... |
ungetc(3) -- un-get character from input stream
|
The ungetc() function pushes the character c (converted to an unsigned char) back onto the input stream pointed to by stream. The pushed-backed characters will be returned by subsequent reads on the s... |
ungetch(3) -- get (or push back) characters from curses terminal keyboard
|
The getch, wgetch, mvgetch and mvwgetch, routines read a character from the window. In no-delay mode, if no input is waiting, the value ERR is returned. In delay mode, the program waits until the syst... |