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

Go to the source code of this file.

Functions

int __cdecl _isatty (int const fh)
 

Function Documentation

◆ _isatty()

int __cdecl _isatty ( int const  fh)

Definition at line 14 of file isatty.cpp.

15{
16 _CHECK_FH_RETURN(fh, EBADF, 0);
17 _VALIDATE_RETURN((fh >= 0 && (unsigned)fh < (unsigned)_nhandle), EBADF, 0);
18
19 return static_cast<int>(_osfile(fh) & FDEV);
20}
#define EBADF
Definition: acclib.h:82
#define _CHECK_FH_RETURN(handle, errorcode, retexpr)
int _nhandle
Definition: ioinit.cpp:34
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
#define _osfile(i)
Definition: internal.h:72