4 /* Non-Posix systems use semi-colon as directory separator in lists,
5 since colon is part of drive letter spec. */
6 #if defined (__MSDOS__) || defined (_WIN32)
7 #define PATH_SEP_CHAR ';'
9 #define PATH_SEP_CHAR ':'
12 typedef struct search_list_elem
14 struct search_list_elem *next;
21 struct search_list_elem *head;
22 struct search_list_elem *tail;
26 extern void search_list_append PARAMS ((Search_List * list, const char *paths));
28 #endif /* search_list_h */