1996-08-29 14:48:26 -03:00
|
|
|
/* strdup() replacement (from stdwin, if you must know) */
|
|
|
|
|
1999-01-27 13:53:11 -04:00
|
|
|
#include "pgenheaders.h"
|
1996-08-29 14:48:26 -03:00
|
|
|
|
|
|
|
char *
|
2000-07-22 15:47:25 -03:00
|
|
|
strdup(const char *str)
|
1996-08-29 14:48:26 -03:00
|
|
|
{
|
|
|
|
if (str != NULL) {
|
|
|
|
register char *copy = malloc(strlen(str) + 1);
|
|
|
|
if (copy != NULL)
|
|
|
|
return strcpy(copy, str);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|