[BACK]Return to libattr.h CVS log [TXT][DIR] Up to [Development] / xfs-cmds / attr / include

File: [Development] / xfs-cmds / attr / include / libattr.h (download)

Revision 1.1, Tue Feb 25 09:06:10 2003 UTC (14 years, 8 months ago) by nathans
Branch: MAIN

New attr userspace package - transition to the trusted namespace for XFS,
Add in the new attribute copying routines from Andreas, and also update
the license info in the syscall man pages so that other folks can use em
too.
New attr userspace package - transition to the trusted namespace for XFS,
Add in the new attribute copying routines from Andreas, and also update
the license info in the syscall man pages so that other folks can use em
too.

#ifndef __LIBATTR_H
#define __LIBATTR_H

#ifdef __cplusplus
extern "C" {
#endif

struct error_context;

extern int attr_copy_file (const char *, const char *,
			   int (*) (const char *name, struct error_context *),
			   struct error_context *);
extern int attr_copy_fd (const char *, int, const char *, int,
			 int (*) (const char *, struct error_context *),
			 struct error_context *);

#ifdef __cplusplus
}
#endif

#endif