quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

curlx.h (2317B)


      1 #ifndef HEADER_CURL_CURLX_H
      2 #define HEADER_CURL_CURLX_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 
     27 /*
     28  * Defines protos and includes all header files that provide the curlx_*
     29  * functions. The curlx_* functions are not part of the libcurl API, but are
     30  * stand-alone functions whose sources can be built and linked by apps if need
     31  * be.
     32  */
     33 
     34 #include "binmode.h"
     35 /* "binmode.h" provides macro CURLX_SET_BINMODE() */
     36 
     37 #include "nonblock.h"
     38 /* "nonblock.h" provides curlx_nonblock() */
     39 
     40 #include "warnless.h"
     41 /* "warnless.h" provides functions:
     42 
     43   curlx_ultous()
     44   curlx_ultouc()
     45   curlx_uztosi()
     46 */
     47 
     48 #include "multibyte.h"
     49 /* "multibyte.h" provides these functions and macros:
     50 
     51   curlx_convert_UTF8_to_wchar()
     52   curlx_convert_wchar_to_UTF8()
     53   curlx_convert_UTF8_to_tchar()
     54   curlx_convert_tchar_to_UTF8()
     55   curlx_unicodefree()
     56 */
     57 
     58 #include "version_win32.h"
     59 /* provides curlx_verify_windows_version() */
     60 
     61 #include "strparse.h"
     62 /* The curlx_str_* parsing functions */
     63 
     64 #include "dynbuf.h"
     65 /* The curlx_dyn_* functions */
     66 
     67 #include "base64.h"
     68 #include "timeval.h"
     69 #include "timediff.h"
     70 
     71 #include "wait.h"
     72 /* for curlx_wait_ms */
     73 
     74 #include "winapi.h"
     75 /* for curlx_winapi_strerror */
     76 
     77 #include "inet_pton.h"
     78 /* for curlx_inet_pton */
     79 
     80 #include "inet_ntop.h"
     81 /* for curlx_inet_ntop */
     82 
     83 #endif /* HEADER_CURL_CURLX_H */