Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d5c5f7955280db3ec8aa49c50b4f31a4bd5c50b7 authored by Miss Skeleton (bot) on 02 October 2020, 21:05:36 UTC
Typo fix - "mesasge" should be "message" (GH-22498)
Tip revision: d5c5f79
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