Change-Id: Iedcddf95c3577da644c0aebbb297b04c93f1b6fe BUG: 1081274 Signed-off-by: Harshavardhana <harsha@harshavardhana.net> Reviewed-on: http://review.gluster.org/7352 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Anand Avati <avati@redhat.com>
35 lines
476 B
C
35 lines
476 B
C
/* strndup.c
|
|
*
|
|
*/
|
|
|
|
/* Written by Niels Möller <nisse@lysator.liu.se>
|
|
*
|
|
* This file is hereby placed in the public domain.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char *
|
|
strndup (const char *, size_t);
|
|
|
|
char *
|
|
strndup (const char *s, size_t size)
|
|
{
|
|
char *r;
|
|
char *end = memchr(s, 0, size);
|
|
|
|
if (end)
|
|
/* Length + 1 */
|
|
size = end - s + 1;
|
|
|
|
r = malloc(size);
|
|
|
|
if (size)
|
|
{
|
|
memcpy(r, s, size-1);
|
|
r[size-1] = '\0';
|
|
}
|
|
return r;
|
|
}
|