Lots of changes from David Mosberger-Tang; see ChangeLog and NOTES for details:
[platform/upstream/binutils.git] / gprof / search_list.h
1 #ifndef search_list_h
2 #define search_list_h
3
4 typedef struct search_list_elem {
5     struct search_list_elem     *next;
6     char                        path[1];
7 } Search_List_Elem;
8
9 typedef struct {
10     struct search_list_elem *head;
11     struct search_list_elem *tail;
12 } Search_List;
13
14 extern void search_list_append PARAMS((Search_List *list, const char *paths));
15
16 #endif /* search_list_h */