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 11 namespace FSShell { 12 13 int unrestricted_stat(const char *path, struct fssh_stat *fsshStat); 14 int unrestricted_fstat(int fd, struct fssh_stat *fsshStat); 15 int unrestricted_lstat(const char *path, struct fssh_stat *fsshStat); 16 17 } // namespace FSShell 18 19 20 #endif // _FSSH_STAT_PRIV_H 21