2010-02-15 03:40:18 +08:00
|
|
|
#ifndef HEADER_CURL_STRDUP_H
|
|
|
|
#define HEADER_CURL_STRDUP_H
|
2006-07-12 01:02:06 +08:00
|
|
|
/***************************************************************************
|
2010-02-15 03:40:18 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2006-07-12 01:02:06 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2006-07-12 01:02:06 +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.
|
2010-02-15 03:40:18 +08:00
|
|
|
*
|
2006-07-12 01:02:06 +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
|
|
|
*
|
2006-07-12 01:02:06 +08:00
|
|
|
***************************************************************************/
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2006-07-12 01:02:06 +08:00
|
|
|
|
|
|
|
#ifndef HAVE_STRDUP
|
2022-12-22 17:15:38 +08:00
|
|
|
char *Curl_strdup(const char *str);
|
2006-07-12 01:02:06 +08:00
|
|
|
#endif
|
2023-11-22 00:54:49 +08:00
|
|
|
#ifdef _WIN32
|
2021-08-07 05:27:42 +08:00
|
|
|
wchar_t* Curl_wcsdup(const wchar_t* src);
|
|
|
|
#endif
|
2016-10-05 05:18:52 +08:00
|
|
|
void *Curl_memdup(const void *src, size_t buffer_length);
|
2016-11-07 17:55:25 +08:00
|
|
|
void *Curl_saferealloc(void *ptr, size_t size);
|
2023-12-08 21:27:29 +08:00
|
|
|
void *Curl_memdup0(const char *src, size_t length);
|
2006-07-12 01:02:06 +08:00
|
|
|
|
2010-02-15 03:40:18 +08:00
|
|
|
#endif /* HEADER_CURL_STRDUP_H */
|