home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / include / ftw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-18  |  431 b   |  24 lines

  1. /* ftw.h (emx+gcc) */
  2.  
  3. #if !defined (_FTW_H)
  4. #define _FTW_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. #define FTW_F           0
  11. #define FTW_D           1
  12. #define FTW_DNR         2
  13. #define FTW_NS          3
  14.  
  15. int ftw (__const__ char *path,
  16.     int (*fn)(__const__ char *name, __const__ struct stat *stat_ptr, int flag),
  17.     int depth);
  18.  
  19. #if defined (__cplusplus)
  20. }
  21. #endif
  22.  
  23. #endif /* !defined (_FTW_H) */
  24.