Staging
v0.5.1
https://github.com/python/cpython
Revision a4ba8a3983356fceb4aedabe0c338180666a79aa authored by Cheryl Sabella on 18 February 2020, 23:01:15 UTC, committed by GitHub on 18 February 2020, 23:01:15 UTC
1 parent af5ee3f
Raw File
Tip revision: a4ba8a3983356fceb4aedabe0c338180666a79aa authored by Cheryl Sabella on 18 February 2020, 23:01:15 UTC
Include subsections in TOC for PDF version of docs. (GH-9629)
Tip revision: a4ba8a3
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