home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / stg_v4.lzh / isatty.c < prev    next >
C/C++ Source or Header  |  1994-11-11  |  222b  |  19 lines

  1. /* OSK version of unix isatty() function */
  2.  
  3. #include "stglib.h"
  4.  
  5. #ifdef _OS9
  6.  
  7. #include <sgstat.h>
  8.  
  9. isatty(hPath)
  10. int hPath;
  11. {
  12.     struct _sgs opt;
  13.  
  14.     _gs_opt(hPath,&opt);
  15.     return(!opt._sgs_class);
  16. }
  17.  
  18. #endif
  19.