|
|
ipx(3) -- IPX address conversion routines
|
|
The routine ipx_addr() interprets character strings representing IPX addresses, returning binary information suitable for use in system calls. The routine ipx_ntoa() takes IPX addresses and returns AS... |
|
ipx_addr(3) -- IPX address conversion routines
|
|
The routine ipx_addr() interprets character strings representing IPX addresses, returning binary information suitable for use in system calls. The routine ipx_ntoa() takes IPX addresses and returns AS... |
|
ipx_ntoa(3) -- IPX address conversion routines
|
|
The routine ipx_addr() interprets character strings representing IPX addresses, returning binary information suitable for use in system calls. The routine ipx_ntoa() takes IPX addresses and returns AS... |
|
iruserok(3) -- routines for returning a stream to a remote command
|
|
The rcmd() function is used by the super-user to execute a command on a remote machine using an authentication scheme based on reserved port numbers. The rresvport() function returns a descriptor to a... |
|
iruserok_sa(3) -- routines for returning a stream to a remote command
|
|
The rcmd() function is used by the super-user to execute a command on a remote machine using an authentication scheme based on reserved port numbers. The rresvport() function returns a descriptor to a... |
|
isalnum(3) -- alphanumeric character test
|
|
The isalnum() function tests for any character for which isalpha(3) or isdigit(3) is true. For single C chars locales (see multibyte(3)) the value of the argument is representable as an unsigned char ... |
|
isalpha(3) -- alphabetic character test
|
|
The isalpha() function tests for any character for which isupper(3) or islower(3) is true. For single C chars locales (see multibyte(3)) the value of the argument is representable as an unsigned char ... |
|
isascii(3) -- test for ASCII character
|
|
The isascii() function tests for an ASCII character, which is any character between 0 and octal 0177 inclusive. |
|
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) -- space or tab character test
|
|
The isblank() function tests for a space or tab character. For any locale, this includes the following standard characters: ``\t'' `` '' In the "C" locale isblank() successful test is limited t... |
|
iscntrl(3) -- control character test
|
|
The iscntrl() function tests for any control character. For single C chars locales (see multibyte(3)) the value of the argument is representable as an unsigned char or the value of EOF. In the ASCII c... |
|
isdialuptty(3) -- determine tty type from ttys file entry
|
|
The getttyent(), and getttynam() functions each return a pointer to an object, with the following structure, containing the broken-out fields of a line from the tty description file. struct ttyent { c... |
|
isdigit(3) -- decimal-digit character test
|
|
The isdigit() function tests for any decimal-digit character. For any locale, this includes the following characters only: ``0'' ``1'' ``2'' ``3'' ``4'' ``5'' ``6'' ``7'' ``8'' ``9'... |