2014-10-17 18:59:32 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2014-10-17 18:59:32 +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.
|
2014-10-17 18:59:32 +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
|
|
|
*
|
2014-10-17 18:59:32 +08:00
|
|
|
***************************************************************************/
|
2014-11-06 06:33:22 +08:00
|
|
|
#include "tool_strdup.h"
|
2014-10-17 18:59:32 +08:00
|
|
|
|
|
|
|
#ifndef HAVE_STRDUP
|
|
|
|
char *strdup(const char *str)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char *newstr;
|
|
|
|
|
|
|
|
if(!str)
|
|
|
|
return (char *)NULL;
|
|
|
|
|
2020-07-18 06:57:05 +08:00
|
|
|
len = strlen(str) + 1;
|
2014-10-17 18:59:32 +08:00
|
|
|
|
2020-07-18 06:57:05 +08:00
|
|
|
newstr = malloc(len);
|
2014-10-17 18:59:32 +08:00
|
|
|
if(!newstr)
|
|
|
|
return (char *)NULL;
|
|
|
|
|
2020-07-18 06:57:05 +08:00
|
|
|
memcpy(newstr, str, len);
|
2014-10-17 18:59:32 +08:00
|
|
|
return newstr;
|
|
|
|
}
|
|
|
|
#endif
|