21int __stat(
const String& _path,
struct stat* _buf)
24 return stat(path, _buf);
27int __lstat(
const String& _path,
struct stat* _buf)
30 return lstat(path, _buf);
33int __chmod(
const String& _path, mode_t _mode)
36 return chmod(path, _mode);
42 return lchmod(path, _mode);
45int __mkdir(
const String& _path, mode_t _mode)
48 return mkdir(path, _mode);
54 return mkfifo(path, _mode);
#define STRTOMBS_ER(str, mbs)
int __mkdir(const String &_path, mode_t _mode)
int __chmod(const String &_path, mode_t _mode)
int __mkfifo(const String &_path, mode_t _mode)
__DCL_BEGIN_NAMESPACE int __stat(const String &_path, struct stat *_buf)
int __lstat(const String &_path, struct stat *_buf)
int __lchmod(const String &_path, mode_t _mode)