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

Go to the source code of this file.

Functions

int __cdecl fsetpos (FILE *const stream, fpos_t const *const position)
 

Function Documentation

◆ fsetpos()

int __cdecl fsetpos ( FILE *const  stream,
fpos_t const *const  position 
)

Definition at line 16 of file fsetpos.cpp.

17{
18 _VALIDATE_RETURN(stream != nullptr, EINVAL, -1);
19 _VALIDATE_RETURN(position != nullptr, EINVAL, -1);
20
21 return _fseeki64(stream, *position, SEEK_SET);
22}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_Check_return_opt_ __MINGW_EXTENSION _CRTIMP int __cdecl _fseeki64(_Inout_ FILE *_File, _In_ __int64 _Offset, _In_ int _Origin)
#define SEEK_SET
Definition: jmemansi.c:26
Definition: parse.h:23