home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / STAT.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  311b  |  18 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  Some semi-Posix compliant macros for DOS/Windows/NT
  5. */
  6.  
  7. #ifndef SNIP_STAT_H
  8. #define SNIP_STAT_H
  9.  
  10. #include <sys/stat.h>
  11.  
  12. #ifndef S_ISDIR
  13.  #define S_ISDIR(x) ((x) & _S_IFDIR )
  14.  #define S_ISREG(x) ((x) & _S_IFREG )
  15. #endif
  16.  
  17. #endif /* SNIP_STAT_H */
  18.