summaryrefslogtreecommitdiffstats
path: root/include/file-list.h
blob: 404d8d64bb4e22471f10aa2dccd3d53c8d7afa5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef __FILE_LIST
#define __FILE_LIST

#define FILE_LIST_FLAG_SAFE	(1 << 0)
#define FILE_LIST_FLAG_READBACK	(1 << 1)
#define FILE_LIST_FLAG_CREATE	(1 << 2)
#define FILE_LIST_FLAG_UBI	(1 << 3)

struct file_list_entry {
	char *name;
	char *filename;
	unsigned long flags;
	struct list_head list;
};

struct file_list {
	struct list_head list;
	int num_entries;
};

struct file_list *file_list_parse(const char *str);
void file_list_free(struct file_list *);

int file_list_add_entry(struct file_list *files, const char *name, const char *filename,
			unsigned long flags);

struct file_list_entry *file_list_entry_by_name(struct file_list *files, const char *name);

#define file_list_for_each_entry(files, entry) \
	list_for_each_entry(entry, &files->list, list)

#endif /* __FILE_LIST */