1/*
2 * Copyright 2005-2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _FSSH_PATH_UTIL_H
6#define _FSSH_PATH_UTIL_H
7
8#include "fssh_defs.h"
9
10
11namespace FSShell {
12
13
14fssh_status_t	get_last_path_component(const char *path, char *buffer,
15					int bufferLen);
16char*			make_path(const char *dir, const char *entry);
17
18
19}	// namespace FSShell
20
21
22#endif	// _FSSH_PATH_UTIL_H
23