1 /* public things from map.c */
2 
3 #ifndef _MAP_H_
4 #define _MAP_H_
5 
6 void map_bootstrap	__P ((void));
7 
8 void map_retrace	__P ((int steps, int walk_back));
9 void map_show		__P ((void));
10 void map_sprintf	__P ((char *buf));
11 void map_add_dir	__P ((char dir));
12 int  map_walk		__P ((char *word, int silent, int maponly));
13 
14 #endif /* _MAP_H_ */
15 
16