ReactOS 0.4.16-dev-937-g7afcd2a
chmod.cpp File Reference
#include <corecrt_internal.h>
#include <io.h>
#include <sys/stat.h>
#include <corecrt_internal_win32_buffer.h>
Include dependency graph for chmod.cpp:

Go to the source code of this file.

Functions

int __cdecl _chmod (char const *const path, int const mode)
 

Function Documentation

◆ _chmod()

int __cdecl _chmod ( char const *const  path,
int const  mode 
)

Definition at line 16 of file chmod.cpp.

17{
18 if (path == nullptr) {
19 return _wchmod(nullptr, mode);
20 }
21
23
25
26 if (cvt != 0) {
27 return -1;
28 }
29
30 return _wchmod(wide_path.data(), mode);
31}
errno_t __acrt_mbs_to_wcs_cp(char const *const null_terminated_input_string, __crt_win32_buffer< wchar_t, ResizePolicy > &win32_buffer, unsigned int const code_page)
unsigned int __acrt_get_utf8_acp_compatibility_codepage()
static char * cvt(double arg, int ndigits, int *decpt, int *sign, char *buf, int eflag)
Definition: fcvtbuf.c:45
GLenum mode
Definition: glext.h:6217
_Check_return_ _CRTIMP int __cdecl _wchmod(_In_z_ const wchar_t *_Filename, _In_ int _Mode)
int errno_t
Definition: corecrt.h:615