2000-02-18 03:39:52 +08:00
|
|
|
#include <reent.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
char *
|
|
|
|
_DEFUN (_strdup_r, (reent_ptr, str),
|
2017-12-04 09:31:41 +08:00
|
|
|
struct _reent *reent_ptr,
|
2000-02-18 03:39:52 +08:00
|
|
|
_CONST char *str)
|
|
|
|
{
|
|
|
|
size_t len = strlen (str) + 1;
|
|
|
|
char *copy = _malloc_r (reent_ptr, len);
|
|
|
|
if (copy)
|
|
|
|
{
|
|
|
|
memcpy (copy, str, len);
|
|
|
|
}
|
|
|
|
return copy;
|
|
|
|
}
|