ftpfs-ls.h 522 B

1234567891011121314151617181920
  1. #ifndef __CURLFTPFS_FTPFS_LS_H__
  2. #define __CURLFTPFS_FTPFS_LS_H__
  3. /*
  4. FTP file system
  5. Copyright (C) 2006 Robson Braga Araujo <robsonbraga@gmail.com>
  6. This program can be distributed under the terms of the GNU GPL.
  7. See the file COPYING.
  8. */
  9. #include "cache.h"
  10. int parse_dir(const char* list, const char* dir,
  11. const char* name, struct stat* sbuf,
  12. char* linkbuf, int linklen,
  13. off_t h, fuse_fill_dir_t filler, void *fuse_buf);
  14. #endif /* __CURLFTPFS_FTPFS_LS_H__ */