1995-02-08 06:34:18 +08:00
|
|
|
#ifndef search_list_h
|
|
|
|
#define search_list_h
|
|
|
|
|
1995-02-08 10:35:44 +08:00
|
|
|
typedef struct search_list_elem
|
|
|
|
{
|
|
|
|
struct search_list_elem *next;
|
|
|
|
char path[1];
|
|
|
|
}
|
|
|
|
Search_List_Elem;
|
1995-02-08 06:34:18 +08:00
|
|
|
|
1995-02-08 10:35:44 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
1995-02-08 06:34:18 +08:00
|
|
|
struct search_list_elem *head;
|
|
|
|
struct search_list_elem *tail;
|
1995-02-08 10:35:44 +08:00
|
|
|
}
|
|
|
|
Search_List;
|
1995-02-08 06:34:18 +08:00
|
|
|
|
1995-02-08 10:35:44 +08:00
|
|
|
extern void search_list_append PARAMS ((Search_List * list, const char *paths));
|
1995-02-08 06:34:18 +08:00
|
|
|
|
|
|
|
#endif /* search_list_h */
|