Coverage Report

Created: 2026-09-14 07:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/curlx/win32-fopen.h
Line
Count
Source
1
#ifndef HEADER_CURLX_FOPEN_H
2
#define HEADER_CURLX_FOPEN_H
3
/***************************************************************************
4
 *                                  _   _ ____  _
5
 *  Project                     ___| | | |  _ \| |
6
 *                             / __| | | | |_) | |
7
 *                            | (__| |_| |  _ <| |___
8
 *                             \___|\___/|_| \_\_____|
9
 *
10
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
11
 *
12
 * This software is licensed as described in the file COPYING, which
13
 * you should have received as part of this distribution. The terms
14
 * are also available at https://curl.se/docs/copyright.html.
15
 *
16
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17
 * copies of the Software, and permit persons to whom the Software is
18
 * furnished to do so, under the terms of the COPYING file.
19
 *
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
 * KIND, either express or implied.
22
 *
23
 * SPDX-License-Identifier: curl
24
 *
25
 ***************************************************************************/
26
#include "curl_setup.h"
27
28
#include "curlx/multibyte.h"
29
30
#ifdef HAVE_FCNTL_H
31
#include <fcntl.h>  /* for open() and attributes */
32
#endif
33
34
int curlx_fseek(void *stream, curl_off_t offset, int whence);
35
36
#ifdef _WIN32
37
#include <sys/stat.h>  /* for _fstati64(), struct _stati64 */
38
#ifndef CURL_WINDOWS_UWP
39
HANDLE curlx_CreateFile(const char *filename,
40
                        DWORD dwDesiredAccess,
41
                        DWORD dwShareMode,
42
                        LPSECURITY_ATTRIBUTES lpSecurityAttributes,
43
                        DWORD dwCreationDisposition,
44
                        DWORD dwFlagsAndAttributes,
45
                        HANDLE hTemplateFile);
46
HANDLE curlx_FindFirstFile(const char *filename,
47
                           WIN32_FIND_DATA *find_data);
48
#endif /* !CURL_WINDOWS_UWP */
49
#define curlx_fstat             _fstati64
50
#define curlx_struct_stat       struct _stati64
51
FILE *curlx_win32_fopen(const char *filename, const char *mode);
52
FILE *curlx_win32_freopen(const char *filename, const char *mode, FILE *fp);
53
int curlx_win32_stat(const char *path, curlx_struct_stat *buffer);
54
int curlx_win32_open(const char *filename, int oflag, ...);
55
int curlx_win32_rename(const char *oldpath, const char *newpath);
56
#define CURLX_FOPEN_LOW         curlx_win32_fopen
57
#define CURLX_FREOPEN_LOW       curlx_win32_freopen
58
#define CURLX_FDOPEN_LOW        _fdopen
59
#define curlx_stat              curlx_win32_stat
60
#define curlx_open              curlx_win32_open
61
#define curlx_close             _close
62
#define curlx_rename            curlx_win32_rename
63
#else
64
753
#define curlx_fstat             fstat
65
753
#define curlx_struct_stat       struct stat
66
753
#define CURLX_FOPEN_LOW         fopen
67
0
#define CURLX_FREOPEN_LOW       freopen
68
0
#define CURLX_FDOPEN_LOW        fdopen
69
0
#define curlx_stat              stat
70
0
#define curlx_open              open
71
0
#define curlx_close             close
72
0
#define curlx_rename            rename
73
#endif
74
75
#ifdef CURL_MEMDEBUG
76
753
#define curlx_fopen(file, mode) curl_dbg_fopen(file, mode, __LINE__, __FILE__)
77
#define curlx_freopen(file, mode, fh) \
78
  curl_dbg_freopen(file, mode, fh, __LINE__, __FILE__)
79
#define curlx_fdopen(file, mode) \
80
0
  curl_dbg_fdopen(file, mode, __LINE__, __FILE__)
81
753
#define curlx_fclose(file)      curl_dbg_fclose(file, __LINE__, __FILE__)
82
#else
83
#define curlx_fopen             CURLX_FOPEN_LOW
84
#define curlx_freopen           CURLX_FREOPEN_LOW
85
#define curlx_fdopen            CURLX_FDOPEN_LOW
86
#define curlx_fclose            fclose
87
#endif
88
89
#endif /* HEADER_CURLX_FOPEN_H */