ReactOS 0.4.16-dev-2110-ge3521eb
tell.cpp File Reference
#include <corecrt_internal_lowio.h>
#include <stdio.h>
Include dependency graph for tell.cpp:

Go to the source code of this file.

Functions

long __cdecl _tell (int const fh)
 

Function Documentation

◆ _tell()

long __cdecl _tell ( int const  fh)

Definition at line 15 of file tell.cpp.

16{
17 return _lseek(fh, 0, SEEK_CUR);
18}
__msvcrt_long CDECL _lseek(int fd, __msvcrt_long offset, int whence)
Definition: file.c:1479
#define SEEK_CUR
Definition: stdio.h:44