|
innetgr(3) -- netgroup database operations
|
These functions operate on the netgroup database file which is described in netgroup(5). The database defines a set of netgroups, each made up of one or more triples: (host, user, domain) that defines... |
insque(3) -- insert/remove element from a queue
|
These interfaces are available from the compatibility library, libcompat. insque() and remque() manipulate queues built from doubly linked lists. Each element in the queue must begin with a "struct q... |
|
intro(3) -- introduction to the system libraries
|
This section provides an overview of the system libraries, their functions, error returns and other common definitions and concepts. Most of these functions are available from the standard C library, ... |
ipsec_dump_policy(3) -- manipulate IPsec policy specification structure from readable string
|
ipsec_set_policy() generates IPsec policy specification structure, namely struct sadb_x_policy and/or struct sadb_x_ipsecrequest from human-readable policy specification. policy specification must be ... |
ipsec_get_policylen(3) -- manipulate IPsec policy specification structure from readable string
|
ipsec_set_policy() generates IPsec policy specification structure, namely struct sadb_x_policy and/or struct sadb_x_ipsecrequest from human-readable policy specification. policy specification must be ... |
ipsec_set_policy(3) -- manipulate IPsec policy specification structure from readable string
|
ipsec_set_policy() generates IPsec policy specification structure, namely struct sadb_x_policy and/or struct sadb_x_ipsecrequest from human-readable policy specification. policy specification must be ... |
ipsec_strerror(3) -- error code for IPsec policy manipulation library
|
netinet6/ipsec.h declares extern int ipsec_errcode; which is used to pass an error code from IPsec policy manipulation library to an user program. ipsec_strerror() can be used to obtain the error mess... |
iruserok(3) -- routines for returning a stream to a remote command
|
The rcmd() function is available for use by anyone to run commands on a remote system. It acts like the orcmd() command, with the exception that it makes a call out to the rcmd(1) command, or any othe... |
iruserok_sa(3) -- routines for returning a stream to a remote command
|
The rcmd() function is available for use by anyone to run commands on a remote system. It acts like the orcmd() command, with the exception that it makes a call out to the rcmd(1) command, or any othe... |
isalnum(3) -- alphanumeric character test
|
The isalnum() macro tests for any character for which isalpha(3) or isdigit(3) is true. |
isalpha(3) -- alphabetic character test
|
The isalpha() function tests for any character for which isupper(3) or islower(3) is true and for which none of iscntrl(3), isdigit(3), ispunct(3), or isspace(3) is true. In the ``C'' locale, isalph... |
isascii(3) -- test for ASCII character
|
The isascii() function tests for an ASCII character, which is any character with a value less than than or equal to 0177. |
isatty(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... |
isblank(3) -- blank-space character test
|
The isblank() function tests for the standard blank-space characters. The standard blank-space characters are the following: ` ' Space character. \t Horizontal tab. In the ``C'' locale, isblank() ... |
iscntrl(3) -- control character test
|
The iscntrl() function tests for any control character. |