summaryrefslogtreecommitdiff
path: root/path-list.h
blob: d6401eaa352ea068ae59c1e04354d7784eaeac96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _PATH_LIST_H_
#define _PATH_LIST_H_
 
struct path_list_item {
	char *path;
	void *util;
};
struct path_list
{
	struct path_list_item *items;
	unsigned int nr, alloc;
	unsigned int strdup_paths:1;
};
 
void print_path_list(const char *text, const struct path_list *p);
 
int path_list_has_path(const struct path_list *list, const char *path);
void path_list_clear(struct path_list *list, int free_items);
struct path_list_item *path_list_insert(const char *path, struct path_list *list);
struct path_list_item *path_list_lookup(const char *path, struct path_list *list);
 
#endif /* _PATH_LIST_H_ */