You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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 */
|