2000-02-17 11:39:52 -08:00
|
|
|
#include <reent.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
char *
|
2017-12-03 19:43:30 -08:00
|
|
|
_strdup_r (struct _reent *reent_ptr,
|
2017-12-03 18:25:16 -08:00
|
|
|
const char *str)
|
2000-02-17 11: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;
|
|
|
|
}
|