grub2: bring back build of aros-side grub2 tools
[AROS.git] / rom / filesys / CDVDFS / src / path.h
blob69bd42399795879e3b52d38c967df456661944d1
1 #ifndef ACDR_PATH_H
2 #define ACDR_PATH_H
4 typedef struct path_node {
5 uint32_t references;
6 char *name;
7 struct path_node *next;
8 } t_path_node;
10 t_path_list Append_Path_List(t_path_list, char *);
11 t_path_list Copy_Path_List (t_path_list, int);
12 void Free_Path_List(t_path_list);
13 t_bool Path_Name_From_Path_List(t_path_list, char*, int);
15 #endif /* ACDR_PATH_H */