Query: isatty
OS: suse
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ISATTY(3) Linux Programmer's Manual ISATTY(3)NAMEisatty - test whether a file descriptor refers to a terminalSYNOPSIS#include <unistd.h> int isatty(int fd);DESCRIPTIONThe isatty() function tests whether fd is an open file descriptor referring to a terminal.RETURN VALUEisatty() returns 1 if fd is an open file descriptor referring to a terminal; otherwise 0 is returned, and errno is set to indicate the error.ERRORSEBADF fd is not a valid file descriptor. EINVAL fd refers to a file other than a terminal. POSIX.1-2001 specifies the error ENOTTY for this case.CONFORMING TOSVr4, 4.3BSD, POSIX.1-2001.SEE ALSOfstat(2), ttyname(3)COLOPHONThis page is part of release 3.25 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2008-12-03 ISATTY(3)
Related Man Pages |
---|
isatty(3p) - centos |
ttyname_r(3) - linux |
isatty(3c) - sunos |
isatty(3) - xfree86 |
isatty(3) - x11r4 |
Similar Topics in the Unix Linux Community |
---|
help with isatty command in C |