|
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. |
isdigit(3) -- decimal-digit character test
|
The isdigit() function tests for any decimal-digit character. |
isgraph(3) -- printing character test (space character exclusive)
|
The isgraph() function tests for any printing character except space (' '). |
isinf(3) -- test for infinity or not-a-number
|
The isinf() function returns 1 if the number is ``infinity'', otherwise 0. The isnan() function returns 1 if the number is ``not-a-number'', otherwise 0. |
isinff(3) -- test for infinity or not-a-number
|
The isinff() function returns 1 if the number is ``infinity'', otherwise 0. The isnanf() function returns 1 if the number is ``not-a-number'', otherwise 0. |
islower(3) -- lower-case character test
|
The islower() function tests for any lower-case letter for which none of iscntrl(3), isdigit(3), ispunct(3), or isspace(3) is true. In the ``C'' locale, islower() returns true only for the character... |