Staging
v0.8.1
https://github.com/python/cpython
Revision 3b43bfaae665ab784ef67cefc3a3f95a75aafdc4 authored by Ned Deily on 09 January 2018, 02:57:13 UTC, committed by Ned Deily on 09 January 2018, 02:57:13 UTC
1 parent ca0c5f2
Raw File
Tip revision: 3b43bfaae665ab784ef67cefc3a3f95a75aafdc4 authored by Ned Deily on 09 January 2018, 02:57:13 UTC
Update docs for 3.7.0a4
Tip revision: 3b43bfa
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

#include "pgenheaders.h"

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