home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Portable Patmos 1.1
/
patmos-src
/
src
/
isatty.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-01-19
|
237 b
|
17 lines
|
[
TEXT/KAHL
]
#include <fcntl.h>
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
#include <stdio.h>
#include <unistd.h>
int
isatty(fd)
int fd;
{
struct termios t;
return(ioctl(fd, TIOCGETA, &t) != -1);
}