kolibrios-gitea/programs/develop/ktcc/trunk/libc/string/strdup.c
siemargl ace23ebbe2 libc testsuite + fixes
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
2016-05-19 12:15:22 +00:00

14 lines
199 B
C

#include <stdlib.h>
#include <string.h>
char* strdup(const char* str)
{
char* res;
int len;
len=strlen(str)+1;
res=malloc(len);
if(res)
memcpy(res,str,len);
return res;
}