home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISCONS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  256 b   |  16 lines

  1.  
  2. #include stdio.h
  3. #include clib.def
  4. extern int _device[];
  5. /*
  6. ** Determine if fd is the console
  7. */
  8. iscons(fd) int fd; {
  9.   return(_device[fd] == CPMCON);
  10.   }
  11.  
  12.  
  13.  
  14.  
  15.  
  16.