1/*
2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _FSSH_STAT_PRIV_H
6#define _FSSH_STAT_PRIV_H
7
8#include "fssh_defs.h"
9
10
11namespace FSShell {
12
13int unrestricted_stat(const char *path, struct fssh_stat *fsshStat);
14int unrestricted_fstat(int fd, struct fssh_stat *fsshStat);
15int unrestricted_lstat(const char *path, struct fssh_stat *fsshStat);
16
17}	// namespace FSShell
18
19
20#endif	// _FSSH_STAT_PRIV_H
21