ReactOS 0.4.16-dev-937-g7afcd2a
fileno.cpp
Go to the documentation of this file.
1//
2// fileno.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// Defines _fileno(), which returns the lowio file handle for the given stdio
7// stream.
8//
10
11
12
13extern "C" int __cdecl _fileno(FILE* const public_stream)
14{
15 __crt_stdio_stream const stream(public_stream);
16
17 _VALIDATE_RETURN(stream.valid(), EINVAL, -1);
18 return stream.lowio_handle();
19}
#define EINVAL
Definition: acclib.h:90
#define __cdecl
Definition: accygwin.h:79
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl _fileno(FILE *const public_stream)
Definition: fileno.cpp:13
Definition: parse.h:23