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