14 lines
199 B
C
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;
|
||
|
}
|