Sign in
android
/
platform
/
external
/
python
/
f30f7f144c714e7269f50126c9f801abfd375b22
/
.
/
Python
/
strdup.c
blob: 9168b4fe5d3bdb29ff578bdf62cf0f9f84919669 [
file
] [
log
] [
blame
]
/* strdup() replacement (from stdwin, if you must know) */
#include
"pgenheaders.h"
char
*
strdup
(
str
)
const
char
*
str
;
{
if
(
str
!=
NULL
)
{
register
char
*
copy
=
malloc
(
strlen
(
str
)
+
1
);
if
(
copy
!=
NULL
)
return
strcpy
(
copy
,
str
);
}
return
NULL
;
}