xattr.h 902 B

123456789101112131415161718192021222324252627282930
  1. #ifndef _SYS_XATTR_H
  2. #define _SYS_XATTR_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define __NEED_ssize_t
  7. #define __NEED_size_t
  8. #include <bits/alltypes.h>
  9. #define XATTR_CREATE 1
  10. #define XATTR_REPLACE 2
  11. ssize_t getxattr(const char *, const char *, void *, size_t);
  12. ssize_t lgetxattr(const char *, const char *, void *, size_t);
  13. ssize_t fgetxattr(int filedes, const char *, void *, size_t);
  14. ssize_t listxattr(const char *, char *, size_t);
  15. ssize_t llistxattr(const char *, char *, size_t);
  16. ssize_t flistxattr(int filedes, char *, size_t);
  17. int setxattr(const char *, const char *, const void *, size_t, int);
  18. int lsetxattr(const char *, const char *, const void *, size_t, int);
  19. int fsetxattr(int, const char *, const void *, size_t, int);
  20. int removexattr(const char *, const char *);
  21. int lremovexattr(const char *, const char *);
  22. int fremovexattr(int, const char *);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif