~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to lib/util/wrap_xattr.h

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __LIB_UTIL_WRAP_XATTR_H__
 
2
#define __LIB_UTIL_WRAP_XATTR_H__
 
3
 
 
4
ssize_t wrap_fgetxattr(int fd, const char *name, void *value, size_t size);
 
5
ssize_t wrap_getxattr(const char *path, const char *name, void *value, size_t size);
 
6
int wrap_fsetxattr(int fd, const char *name, void *value, size_t size, int flags);
 
7
int wrap_setxattr(const char *path, const char *name, void *value, size_t size, int flags);
 
8
int wrap_fremovexattr(int fd, const char *name);
 
9
int wrap_removexattr(const char *path, const char *name);
 
10
 
 
11
#endif /* __LIB_UTIL_WRAP_XATTR_H__ */
 
12