ReactOS 0.4.16-dev-937-g7afcd2a
getw.cpp File Reference
Include dependency graph for getw.cpp:

Go to the source code of this file.

Functions

int __cdecl _getw (FILE *const stream)
 

Function Documentation

◆ _getw()

int __cdecl _getw ( FILE *const  stream)

Definition at line 16 of file getw.cpp.

17{
18 _VALIDATE_RETURN(stream != nullptr, EINVAL, EOF);
19
20 int return_value = EOF;
21
23 __try
24 {
25 int value = 0;
26 char* const first = reinterpret_cast<char*>(&value);
27 char* const last = first + sizeof(value);
28
29 for (char* it = first; it != last; ++it)
30 {
31 *it = static_cast<char>(_getc_nolock(stream));
32 }
33
34 if (feof(stream))
35 __leave;
36
37 if (ferror(stream))
38 __leave;
39
40 return_value = value;
41 }
43 {
45 }
47
48 return return_value;
49}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
const GLint * first
Definition: glext.h:5794
_Check_return_ _CRTIMP int __cdecl ferror(_In_ FILE *_File)
#define EOF
Definition: stdio.h:24
#define _getc_nolock(_stream)
Definition: stdio.h:1144
_Check_return_ _CRTIMP int __cdecl feof(_In_ FILE *_File)
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
static UINT UINT last
Definition: font.c:45
#define __try
Definition: pseh2_64.h:188
#define __leave
Definition: pseh2_64.h:192
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190
Definition: parse.h:23
Definition: pdh_main.c:96