D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
src
/
Python-3.9.9
/
Python
/
Filename :
strdup.c
back
Copy
/* strdup() replacement (from stdwin, if you must know) */ char * strdup(const char *str) { if (str != NULL) { char *copy = malloc(strlen(str) + 1); if (copy != NULL) return strcpy(copy, str); } return NULL; }