home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / FTW.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  431b  |  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.