|
hiertable(3) -- Create and manipulate hierarchical table widgets ___________________________________________________...
|
The hiertable widget displays a scrollable tree of entries, one entry per line. Each entry has a text label, an icon, and may have children (sub-entries). A button on the left side of the entry contro... |
hsearch(3) -- hash table management
|
These three functions allow the user to create a hash table which associates a key with any data. First the table must be created with the function hcreate(). nel is an estimate of the number of entri... |
htext(3) -- Create and manipulate hypertext widgets
|
The htext command creates a new window (given by the pathName argument) and makes it into a htext widget. Additional options, described above, may be specified on the command line or in the option dat... |
hypot(3) -- Euclidean distance function
|
The hypot() function returns the sqrt(x*x + y*y). This is the length of the hypotenuse of a right-angle triangle with sides of length x and y, or the distance of the point (x, y) from the origin. |
iconv(3) -- perform character set conversion
|
The argument cd must be a conversion descriptor created using the function iconv_open. The main case is when inbuf is not NULL and *inbuf is not NULL. In this case, the iconv function converts the mul... |
iconv_close(3) -- deallocate descriptor for character set conversion
|
The iconv_close function deallocates a conversion descriptor cd previously allocated using iconv_open. |
iconv_open(3) -- allocate descriptor for character set conversion
|
The iconv_open function allocates a conversion descriptor suitable for converting byte sequences from character encoding fromcode to character encoding tocode. The values permitted for fromcode and to... |
index(3) -- locate character in string
|
The index() function returns a pointer to the first occurrence of the character c in the string s. The rindex() function returns a pointer to the last occurrence of the character c in the string s. Th... |
inet(3) -- Internet address manipulation routines
|
inet_aton() converts the Internet host address cp from the standard numbers-and-dots notation into binary data and stores it in the structure that inp points to. inet_aton returns nonzero if the addre... |
inet_ntop(3) -- Parse network address structures
|
This function converts the network address structure src in the af address family into a character string, which is copied to a character buffer dst, which is cnt bytes long. inet_ntop(3) extends the ... |
inet_pton(3) -- Create a network address structure
|
This function converts the character string src into a network address structure in the af address family, then copies the network address structure to dst. inet_pton(3) extends the inet_addr(3) funct... |
initgroups(3) -- initialize the supplementary group access list
|
The initgroups() function initializes the group access list by reading the group database /etc/group and using all groups of which user is a member. The additional group group is also added to the lis... |
insque(3) -- insert/remove an item from a queue
|
insque() and remque() are functions for manipulating queues made from doubly-linked lists. Each element in this list is of type struct qelem The qelem structure is defined as struct qelem { struct qel... |