2012-06-12 07:06:48 +08:00
|
|
|
#ifndef HEADER_CURL_STRERROR_H
|
|
|
|
#define HEADER_CURL_STRERROR_H
|
2004-03-25 06:43:09 +08:00
|
|
|
/***************************************************************************
|
2004-10-12 01:26:24 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2004-03-25 06:43:09 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-03-25 06:43:09 +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-10-12 01:26:24 +08:00
|
|
|
*
|
2004-03-25 06:43:09 +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-03-25 06:43:09 +08:00
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "urldata.h"
|
2004-03-25 06:43:09 +08:00
|
|
|
|
2020-02-13 05:48:16 +08:00
|
|
|
#define STRERROR_LEN 256 /* a suitable length */
|
2004-10-02 21:01:44 +08:00
|
|
|
|
2019-02-26 01:12:51 +08:00
|
|
|
const char *Curl_strerror(int err, char *buf, size_t buflen);
|
2023-11-22 00:54:49 +08:00
|
|
|
#if defined(_WIN32) || defined(_WIN32_WCE)
|
2019-11-10 16:37:38 +08:00
|
|
|
const char *Curl_winapi_strerror(DWORD err, char *buf, size_t buflen);
|
|
|
|
#endif
|
2012-06-12 07:06:48 +08:00
|
|
|
#ifdef USE_WINDOWS_SSPI
|
2019-02-26 01:12:51 +08:00
|
|
|
const char *Curl_sspi_strerror(int err, char *buf, size_t buflen);
|
2004-03-25 06:43:09 +08:00
|
|
|
#endif
|
2012-06-12 07:06:48 +08:00
|
|
|
|
|
|
|
#endif /* HEADER_CURL_STRERROR_H */
|