home *** CD-ROM | disk | FTP | other *** search
/ ftp.ncftp.com / ftp.ncftp.com.zip / ftp.ncftp.com / ncftp / ncftp-1.9.5.tar.gz / ncftp-1.9.5.tar / ncftp-1.9.5 / glob.h < prev    next >
C/C++ Source or Header  |  1995-10-01  |  375b  |  23 lines

  1. /* glob.h */
  2.  
  3. #ifndef _glob_h_
  4. #define _glob_h_ 1
  5.  
  6. /*  $RCSfile: glob.h,v $
  7.  *  $Revision: 14020.11 $
  8.  *  $Date: 93/05/21 05:45:32 $
  9.  */
  10.  
  11. char **glob(char *v);
  12. int letter(char c);
  13. int digit(char c);
  14. int any(int c, char *s);
  15. int blklen(char **av);
  16. char **blkcpy(char **oav, char **bv);
  17. void blkfree(char **av0);
  18. char **copyblk(char **v);
  19. int gethdir(char *home_dir);
  20.  
  21. #endif
  22.  
  23.