sysstr.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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(const struct mystr* p_str);
  23. int str_create_exclusive(const struct mystr* p_str);
  24. int str_chmod(const struct mystr* p_str, unsigned int mode);
  25. int str_stat(const struct mystr* p_str, struct vsf_sysutil_statbuf** p_ptr);
  26. int str_lstat(const struct mystr* p_str, struct vsf_sysutil_statbuf** p_ptr);
  27. int str_rename(const struct mystr* p_from_str, const struct mystr* p_to_str);
  28. struct vsf_sysutil_dir* str_opendir(const struct mystr* p_str);
  29. void str_next_dirent(struct mystr* p_filename_str,
  30. struct vsf_sysutil_dir* p_dir);
  31. struct vsf_sysutil_user* str_getpwnam(const struct mystr* p_user_str);
  32. void str_syslog(const struct mystr* p_str, int severe);
  33. #endif /* VSF_SYSSTR_H */