mirror of
https://github.com/pret/agbcc.git
synced 2026-03-21 17:44:20 -05:00
11 lines
172 B
C
Executable File
11 lines
172 B
C
Executable File
char *
|
|
strdup(s)
|
|
char *s;
|
|
{
|
|
char *result = (char*)malloc(strlen(s) + 1);
|
|
if (result == (char*)0)
|
|
return (char*)0;
|
|
strcpy(result, s);
|
|
return result;
|
|
}
|