home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
001-099
/
ff098.lzh
/
Backup
/
build
< prev
next >
Wrap
Text File
|
1987-09-02
|
227b
|
14 lines
char *
build_name ( root , filename )
char *root , *filename;
{
static char buf[ 512 ];
strcpy ( buf , root );
if ( buf[ strlen ( buf ) - 1 ] != ':' )
strcat ( buf , "/" );
strcat ( buf , filename );
return ( buf );
}