mirror of
https://github.com/curl/curl.git
synced 2026-01-27 01:44:17 +00:00
- asyn-thrdd.c: scope an include. - apply more clang-format suggestions. - tidy-up PP guard comments. - delete empty line from the top of headers. - add empty line after `curl_setup.h` include where missing. - fix indent. - CODE_STYLE.md: add `strcpy`. Follow-up to 8636ad55dfbdbcc2809a61e65c3511baf5e7b0e8 #20088 - lib1901.c: drop unnecessary line. Follow-up to 436e67f65b9dee1e80aa063c39450f0d1df6ac72 #20076 Closes #20070
75 lines
2.4 KiB
C
75 lines
2.4 KiB
C
#ifndef HEADER_CURL_WARNLESS_H
|
|
#define HEADER_CURL_WARNLESS_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
|
|
#define CURLX_FUNCTION_CAST(target_type, func) \
|
|
(target_type)(void (*)(void))(func)
|
|
|
|
unsigned char curlx_ultouc(unsigned long ulnum);
|
|
|
|
int curlx_uztosi(size_t uznum);
|
|
|
|
unsigned long curlx_uztoul(size_t uznum);
|
|
|
|
unsigned int curlx_uztoui(size_t uznum);
|
|
|
|
int curlx_sltosi(long slnum);
|
|
|
|
unsigned int curlx_sltoui(long slnum);
|
|
|
|
unsigned short curlx_sltous(long slnum);
|
|
|
|
ssize_t curlx_uztosz(size_t uznum);
|
|
|
|
size_t curlx_sotouz(curl_off_t sonum);
|
|
|
|
int curlx_sztosi(ssize_t sznum);
|
|
|
|
unsigned short curlx_uitous(unsigned int uinum);
|
|
|
|
size_t curlx_sitouz(int sinum);
|
|
|
|
size_t curlx_uitouz(unsigned int uinum);
|
|
|
|
/* Convert a curl_off_t to fit into size_t interval [uzmin, uzmax].
|
|
* values outside this interval give the lower/upper bound. */
|
|
size_t curlx_sotouz_range(curl_off_t sonum, size_t uzmin, size_t uzmax);
|
|
|
|
/* Convert a size_t to curl_off_t, return CURL_OFF_T_MAX if too large. */
|
|
curl_off_t curlx_uztoso(size_t uznum);
|
|
|
|
/* Convert a ssize_t to size_t, return FALSE if negative and set 0 */
|
|
bool curlx_sztouz(ssize_t sznum, size_t *puznum);
|
|
|
|
/* Convert a curl_off_t to size_t, return FALSE if negative or
|
|
* too large and set 0 */
|
|
bool curlx_sotouz_fits(curl_off_t sonum, size_t *puznum);
|
|
|
|
/* Convert a long to size_t, return FALSE if negative or too large
|
|
* and set 0 */
|
|
bool curlx_sltouz(long sznum, size_t *puznum);
|
|
|
|
#endif /* HEADER_CURL_WARNLESS_H */
|