Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 6c38841c08edd6b0727903ec3f1acd10dc9766f6 authored by Ɓukasz Langa on 29 June 2020, 22:30:11 UTC
Python 3.8.4rc1
Tip revision: 6c38841
strdup.c
/* 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;
}
back to top