This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / gprof / search_list.h
1 #ifndef search_list_h
2 #define search_list_h
3
4 typedef struct search_list_elem
5 {
6 struct search_list_elem *next;
7 char path[1];
8 }
9 Search_List_Elem;
10
11 typedef struct
12 {
13 struct search_list_elem *head;
14 struct search_list_elem *tail;
15 }
16 Search_List;
17
18 extern void search_list_append PARAMS ((Search_List * list, const char *paths));
19
20 #endif /* search_list_h */
This page took 0.030609 seconds and 5 git commands to generate.