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 >
Text File  |  1987-09-02  |  227b  |  14 lines

  1.  
  2. char *
  3. build_name ( root , filename )
  4. char *root , *filename;
  5. {
  6.     static char buf[ 512 ];
  7.  
  8.     strcpy ( buf , root );
  9.     if ( buf[ strlen ( buf ) - 1 ] != ':' )
  10.         strcat ( buf , "/" );
  11.     strcat ( buf , filename );
  12.     return ( buf );
  13. }
  14.