4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-21 05:49:19 +08:00
Yaakov Selkowitz 0bda30e1ff ansification: remove _CONST
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:08 -06:00

28 lines
439 B
C

#include <reent.h>
#include <stdlib.h>
#include <string.h>
char *
_DEFUN (_strndup_r, (reent_ptr, str, n),
struct _reent *reent_ptr,
const char *str,
size_t n)
{
const char *ptr = str;
size_t len;
char *copy;
while (n-- > 0 && *ptr)
ptr++;
len = ptr - str;
copy = _malloc_r (reent_ptr, len + 1);
if (copy)
{
memcpy (copy, str, len);
copy[len] = '\0';
}
return copy;
}