2000-02-18 03:39:52 +08:00
|
|
|
#include <reent.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
char *
|
2017-12-04 11:43:30 +08:00
|
|
|
_strdup_r (struct _reent *reent_ptr,
|
2017-12-04 10:25:16 +08:00
|
|
|
const char *str)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
|
|
|
size_t len = strlen (str) + 1;
|
|
|
|
char *copy = _malloc_r (reent_ptr, len);
|
|
|
|
if (copy)
|
|
|
|
{
|
|
|
|
memcpy (copy, str, len);
|
|
|
|
}
|
|
|
|
return copy;
|
|
|
|
}
|