home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
minnie.tuhs.org
/
unixen.tar
/
unixen
/
PDP-11
/
Distributions
/
ucb
/
2bsd.tar.gz
/
2bsd.tar
/
upgrade
/
libretro
/
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
|
1979-04-19
|
116 b
|
11 lines
#include <sgtty.h>
/* is unit c a tty? */
isatty(c)
int c;
{
struct sgttyb tty;
return (gtty(c, &tty) == 0);
}