home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
math
/
ols
/
miscstri.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-28
|
182b
|
12 lines
/* Miscellanous string routines */
char *
strdup (char *s)
{
char *tmp;
tmp = (char *) malloc ((1 + strlen (s)) * sizeof (char));
strcpy (tmp, s);
return tmp;
}