isastream(3) - Linux man page
Prolog
This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.Name
isastream - test a file descriptor (STREAMS)Synopsis
#include <stropts.h>
int isastream(int fildes);
Description
The isastream() function shall test whether fildes, an open file descriptor, is associated with a STREAMS-based file.
Return Value
Upon successful completion, isastream() shall return 1 if fildes refers to a STREAMS-based file and 0 if not. Otherwise, isastream() shall return -1 and set errno to indicate the error.
Errors
The isastream() function shall fail if:
- EBADF
- The fildes argument is not a valid open file descriptor.
The following sections are informative.
Examples
None.
Application Usage
None.
Rationale
None.
Future Directions
None.
See Also
The Base Definitions volume of IEEE Std 1003.1-2001, <stropts.h>