haiku/src/tools/fs_shell/stat_priv.h
Ingo Weinhold 3e61704042 axeld + bonefish:
Added parameters --start-offset and --end-offset to restrict the
access of the file system to only that part of the given file.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23970 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-02-17 13:42:27 +00:00

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