1#ifndef _XAR_EA_H_
2#define _XAR_EA_H_
3
4#include "xar.h"
5#include "filetree.h"
6
7typedef struct __xar_ea_t *xar_ea_t;
8
9xar_ea_t xar_ea_new(xar_file_t f, const char *name);
10int32_t xar_ea_pset(xar_file_t f, xar_ea_t e, const char *key, const char *value);
11int32_t xar_ea_pget(xar_ea_t e, const char *key, const char **value);
12xar_prop_t xar_ea_root(xar_ea_t e);
13xar_prop_t xar_ea_find(xar_file_t f, const char *name);
14
15#endif /* _XAR_EA_H_ */
16