kolibrios/programs/develop/libraries/kolibri-libc/source/string/strdup.c
turbocat 728f124678 Added git source kolibri-libc and
Configured autobuild

git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-04-27 16:33:31 +00:00

10 lines
182 B
C

#include <string.h>
#include <stdlib.h>
char* strdup(const char *str)
{
char *buf = malloc(strlen(str) + 1);
buf[strlen(str)] = '\0';
strcpy(buf, str);
return buf;
}