1 /* navigation.h */
2 
3 /*
4  * This file is part of CliFM
5  *
6  * Copyright (C) 2016-2021, L. Abramovich <johndoe.arch@outlook.com>
7  * All rights reserved.
8 
9  * CliFM is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * CliFM is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22  * MA 02110-1301, USA.
23 */
24 
25 #ifndef NAVIGATION_H
26 #define NAVIGATION_H
27 
28 int back_function(char **comm);
29 int forth_function(char **comm);
30 int xchdir(const char *dir, const int set_title);
31 int cd_function(char *new_path, const int print_error);
32 char *fastback(const char *str);
33 int workspaces(char *str);
34 void print_dirhist(void);
35 
36 #endif /* NAVIGATION_H */
37