home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
mint
/
mntlib16.lzh
/
MNTLIB16
/
STRDUP.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-03
|
305b
|
21 lines
/*
* strdup: return a duplicate of a string
* Written by Eric R. Smith and placed in the public domain.
*/
#include <stdlib.h>
#include <string.h>
#undef strdup
char *
strdup(s)
const char *s;
{
char *dup;
dup = malloc(strlen(s)+1);
if (dup)
strcpy(dup, s);
return dup;
}