ReactOS 0.4.16-dev-937-g7afcd2a
getw.cpp
Go to the documentation of this file.
1//
2// getw.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _getw(), which reads a binary integer to a stream.
7//
9
10
11
12// Reads a binary int value from the stream, byte-by-byte. On success, returns
13// the value written; on failure (error or eof), returns EOF. Note, however,
14// that the value may be EOF--that is, after all, a valid integer--so be sure to
15// test ferror() and feof() to check for error conditions.
16extern "C" int __cdecl _getw(FILE* const stream)
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 __cdecl
Definition: accygwin.h:79
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl _getw(FILE *const stream)
Definition: getw.cpp:16
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