XATTRMAPPING
struct XATTRMAPPING *xattr_mapping;
const struct XATTRMAPPING *q;
static struct XATTRMAPPING *getmappingitem(FILEREADER reader, void *fileid,
struct XATTRMAPPING *item;
item = (struct XATTRMAPPING*)NULL;
item = (struct XATTRMAPPING*)ntfs_malloc(
sizeof(struct XATTRMAPPING)
item->next = (struct XATTRMAPPING*)NULL;
static struct XATTRMAPPING *ntfs_read_xattr_mapping(FILEREADER reader,
struct XATTRMAPPING *item;
struct XATTRMAPPING *current;
struct XATTRMAPPING *firstitem;
struct XATTRMAPPING *lastitem;
firstitem = (struct XATTRMAPPING*)NULL;
lastitem = (struct XATTRMAPPING*)NULL;
item->next = (struct XATTRMAPPING*)NULL;
struct XATTRMAPPING *ntfs_xattr_build_mapping(ntfs_volume *vol,
struct XATTRMAPPING *firstmapping;
struct XATTRMAPPING *mapping;
firstmapping = (struct XATTRMAPPING*)NULL;
mapping = (struct XATTRMAPPING*)ntfs_malloc(
sizeof(struct XATTRMAPPING)
void ntfs_xattr_free_mapping(struct XATTRMAPPING *mapping)
struct XATTRMAPPING *p, *q;
struct XATTRMAPPING *next;
struct XATTRMAPPING *ntfs_xattr_build_mapping(ntfs_volume *vol,
void ntfs_xattr_free_mapping(struct XATTRMAPPING*);