-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_Lseek.c
70 lines (51 loc) · 1.71 KB
/
_Lseek.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
_Lseek.c
Abstract:
Implementation of the POSIX C function.
Moves a file pointer to the specified location.
Author:
Kilian Kegel
--*/
#include <io.h>
#include <stdio.h>
#include <errno.h>
#include <CdeServices.h>
extern int __cdeIsIOBuffer(void* stream);
extern void (*pinvalid_parameter_handler)(const wchar_t* expression, const wchar_t* function, const wchar_t* file, unsigned int line, unsigned* pReserved);
extern void _cdeAbort(void);
/** _lseek()
Synopsis
#include <io.h>
long _lseek(int fd, long offset, int origin);
Description
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/lseek-lseeki64
https://pubs.opengroup.org/onlinepubs/9699919799/functions/lseek.html
Parameters
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/lseek-lseeki64#parameters
Returns
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/lseek-lseeki64#return-value
**/
long _lseek(int fd, long offset, int origin)
{
FILE* fp = __cdeGetIOBuffer((unsigned)fd);
long nRet = NULL == fp ? -1 : 0;
long pos, posorg;
int seekstat;
if(nRet == 0) do
{
posorg = ftell(fp);
seekstat = fseek((FILE*)fp, offset, origin);
pos = ftell(fp);
nRet = pos;
if (0 != seekstat)
fseek((FILE*)fp, posorg, SEEK_SET); // restore original position on error
if (EINVAL == errno)
nRet = -1;
} while (0);
return nRet;
}