mirror of
https://review.haiku-os.org/haiku
synced 2025-02-11 16:19:28 +01:00
21 lines
466 B
C
21 lines
466 B
C
|
/*
|
||
|
* Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _FSSH_STAT_PRIV_H
|
||
|
#define _FSSH_STAT_PRIV_H
|
||
|
|
||
|
#include "fssh_defs.h"
|
||
|
|
||
|
|
||
|
namespace FSShell {
|
||
|
|
||
|
int unrestricted_stat(const char *path, struct fssh_stat *fsshStat);
|
||
|
int unrestricted_fstat(int fd, struct fssh_stat *fsshStat);
|
||
|
int unrestricted_lstat(const char *path, struct fssh_stat *fsshStat);
|
||
|
|
||
|
} // namespace FSShell
|
||
|
|
||
|
|
||
|
#endif // _FSSH_STAT_PRIV_H
|