2012-12-28 19:03:09 +08:00
|
|
|
#ifndef HEADER_CURL_CURLX_H
|
|
|
|
#define HEADER_CURL_CURLX_H
|
2004-04-30 16:22:38 +08:00
|
|
|
/***************************************************************************
|
2004-05-24 19:57:34 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2004-04-30 16:22:38 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-04-30 16:22:38 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-05-24 19:57:34 +08:00
|
|
|
*
|
2004-04-30 16:22:38 +08:00
|
|
|
* 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
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2004-04-30 16:22:38 +08:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Defines protos and includes all header files that provide the curlx_*
|
|
|
|
* functions. The curlx_* functions are not part of the libcurl API, but are
|
|
|
|
* stand-alone functions whose sources can be built and linked by apps if need
|
|
|
|
* be.
|
|
|
|
*/
|
|
|
|
|
2024-08-22 23:12:09 +08:00
|
|
|
/* map standard printf functions to curl implementations */
|
|
|
|
#include "curl_printf.h"
|
2004-04-30 16:22:38 +08:00
|
|
|
|
2016-09-30 23:15:05 +08:00
|
|
|
#include "strcase.h"
|
|
|
|
/* "strcase.h" provides the strcasecompare protos */
|
2004-04-30 16:22:38 +08:00
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "strtoofft.h"
|
|
|
|
/* "strtoofft.h" provides this function: curlx_strtoofft(), returns a
|
2004-04-30 16:22:38 +08:00
|
|
|
curl_off_t number from a given string.
|
|
|
|
*/
|
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "nonblock.h"
|
|
|
|
/* "nonblock.h" provides curlx_nonblock() */
|
2009-07-10 05:47:24 +08:00
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "warnless.h"
|
|
|
|
/* "warnless.h" provides functions:
|
2010-02-23 02:56:29 +08:00
|
|
|
|
|
|
|
curlx_ultous()
|
|
|
|
curlx_ultouc()
|
2010-02-27 00:42:33 +08:00
|
|
|
curlx_uztosi()
|
2010-02-23 02:56:29 +08:00
|
|
|
*/
|
|
|
|
|
2019-04-14 04:55:51 +08:00
|
|
|
#include "curl_multibyte.h"
|
|
|
|
/* "curl_multibyte.h" provides these functions and macros:
|
|
|
|
|
|
|
|
curlx_convert_UTF8_to_wchar()
|
|
|
|
curlx_convert_wchar_to_UTF8()
|
|
|
|
curlx_convert_UTF8_to_tchar()
|
|
|
|
curlx_convert_tchar_to_UTF8()
|
|
|
|
curlx_unicodefree()
|
|
|
|
*/
|
|
|
|
|
2020-08-01 03:36:56 +08:00
|
|
|
#include "version_win32.h"
|
|
|
|
/* "version_win32.h" provides curlx_verify_windows_version() */
|
|
|
|
|
2012-12-28 19:03:09 +08:00
|
|
|
#endif /* HEADER_CURL_CURLX_H */
|