home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / kill2.zip / kill2src.zip / isfile.c < prev    next >
C/C++ Source or Header  |  1992-12-21  |  227b  |  16 lines

  1. #define INCL_DOS
  2.  
  3. #include <os2.h>
  4.  
  5. int _fastcall isfile (int handle) {
  6.  
  7.   int ret = 0;
  8.   int attrs,dev;
  9.  
  10.   if(!DosQHandType(handle,&attrs,&dev)) {
  11.     if(attrs & FHT_DISKFILE)
  12.       ret = 1;
  13.   }
  14.   return ret;
  15. }
  16.