sysstr.h
上传用户:ig0539
上传日期:2022-05-21
资源大小:181k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

C/C++

  1. #ifndef VSF_SYSSTR_H
  2. #define VSF_SYSSTR_H
  3. /* Forward declarations */
  4. struct mystr;
  5. struct vsf_sysutil_statbuf;
  6. struct vsf_sysutil_dir;
  7. struct vsf_sysutil_user;
  8. void str_getcwd(struct mystr* p_str);
  9. int str_readlink(struct mystr* p_str, const struct mystr* p_filename_str);
  10. int str_write_loop(const struct mystr* p_str, const int fd);
  11. int str_read_loop(struct mystr* p_str, const int fd);
  12. int str_mkdir(const struct mystr* p_str, const unsigned int mode);
  13. int str_rmdir(const struct mystr* p_str);
  14. int str_unlink(const struct mystr* p_str);
  15. int str_chdir(const struct mystr* p_str);
  16. enum EVSFSysStrOpenMode
  17. {
  18.   kVSFSysStrOpenUnknown = 0,
  19.   kVSFSysStrOpenReadOnly = 1
  20. };
  21. int str_open(const struct mystr* p_str, const enum EVSFSysStrOpenMode mode);
  22. int str_create_append(const struct mystr* p_str);
  23. int str_create(const struct mystr* p_str);
  24. int str_create_overwrite(const struct mystr* p_str);
  25. int str_chmod(const struct mystr* p_str, unsigned int mode);
  26. int str_stat(const struct mystr* p_str, struct vsf_sysutil_statbuf** p_ptr);
  27. int str_lstat(const struct mystr* p_str, struct vsf_sysutil_statbuf** p_ptr);
  28. int str_rename(const struct mystr* p_from_str, const struct mystr* p_to_str);
  29. struct vsf_sysutil_dir* str_opendir(const struct mystr* p_str);
  30. void str_next_dirent(struct mystr* p_filename_str,
  31.                      struct vsf_sysutil_dir* p_dir);
  32. struct vsf_sysutil_user* str_getpwnam(const struct mystr* p_user_str);
  33. void str_syslog(const struct mystr* p_str, int severe);
  34. #endif /* VSF_SYSSTR_H */