source:
trunk/src/binutils/libiberty/strdup.c@
334
Last change on this file since 334 was 10, checked in by , 22 years ago | |
---|---|
|
|
File size: 172 bytes |
Line | |
---|---|
1 | char * |
2 | strdup(s) |
3 | char *s; |
4 | { |
5 | char *result = (char*)malloc(strlen(s) + 1); |
6 | if (result == (char*)0) |
7 | return (char*)0; |
8 | strcpy(result, s); |
9 | return result; |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.