home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
isatty.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
12 lines
/*
** Return "true" if fd is a device, else "false"
*/
#include <stdio.h>
isatty(fd) int fd; {
if(fd >255)
return(FALSE);
else
return(TRUE);
}