Wed Mar 20 18:15:47 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
[deliverable/binutils-gdb.git] / gprof / search_list.h
CommitLineData
5489fcc3
KR
1#ifndef search_list_h
2#define search_list_h
3
12516a37
KR
4typedef struct search_list_elem
5 {
6 struct search_list_elem *next;
7 char path[1];
8 }
9Search_List_Elem;
5489fcc3 10
12516a37
KR
11typedef struct
12 {
5489fcc3
KR
13 struct search_list_elem *head;
14 struct search_list_elem *tail;
12516a37
KR
15 }
16Search_List;
5489fcc3 17
12516a37 18extern void search_list_append PARAMS ((Search_List * list, const char *paths));
5489fcc3
KR
19
20#endif /* search_list_h */
This page took 0.0633 seconds and 4 git commands to generate.