shithub: scc

ref: f20cb974e12e176500a0f44c4ebf3332e26dc463
dir: /lib/xstrdup.c/

View raw version
#include <string.h>
#include "../inc/cc.h"

char *
xstrdup(const char *s)
{
	size_t len = strlen(s) + 1;
	char *p = xmalloc(len);

	return memcpy(p, s, len);
}