blob: 54dfe3590f7a073abd0417df433d1210cf7e1e99 [file] [log] [blame]
#ifndef search_list_h
#define search_list_h
typedef struct search_list_elem
{
struct search_list_elem *next;
char path[1];
}
Search_List_Elem;
typedef struct
{
struct search_list_elem *head;
struct search_list_elem *tail;
}
Search_List;
extern void search_list_append PARAMS ((Search_List * list, const char *paths));
#endif /* search_list_h */