guard. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20976 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
424 B
C++
23 lines
424 B
C++
/*
|
|
* Copyright 2005-2007, Ingo Weinhold, [email protected].
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _FSSH_PATH_UTIL_H
|
|
#define _FSSH_PATH_UTIL_H
|
|
|
|
#include "fssh_defs.h"
|
|
|
|
|
|
namespace FSShell {
|
|
|
|
|
|
fssh_status_t get_last_path_component(const char *path, char *buffer,
|
|
int bufferLen);
|
|
char* make_path(const char *dir, const char *entry);
|
|
|
|
|
|
} // namespace FSShell
|
|
|
|
|
|
#endif // _FSSH_PATH_UTIL_H
|