home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / flistfrontend / src / dirfind.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-06  |  608 b   |  19 lines

  1. /* $Id: dirfind.h,v 1.2 1995/06/06 00:47:44 tom Exp $
  2.  *
  3.  * interface of dirfind.c
  4.  */
  5.  
  6. #ifndef    DIRFIND_H
  7. #define    DIRFIND_H
  8.  
  9. #include "dclarg.h"    /* for DCLARG */
  10. #include "dirent.h"    /* for FILENT */
  11.  
  12. extern    int    dirfind (int curfile, int forward, DCLARG *find_spec, void (*each)(int, int *), int must_find, int unfind);
  13. extern    void    dirfind_chop (DCLARG *find_spec, FILENT *fz_, PATHNT *pz_, char *Fpath, char *Fname, char *Ftype);
  14. extern    int    dirfind_nxt (int j, int forward);
  15. extern    int    dirfind_notexp (DCLARG *find_spec);
  16. extern    int    dirfind_tst (FILENT *z, FILENT *zref, int lookup);
  17.  
  18. #endif /* DIRFIND_H */
  19.