home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / STRCAT.C < prev    next >
Text File  |  2000-06-30  |  256b  |  21 lines

  1.  
  2. /*
  3. ** Concatenate to end of s.
  4. ** s must be long enough.
  5. */
  6. strcat(s, t) char *s, *t; {
  7.   char *d;
  8.   d = s;
  9.   --s;
  10.   while(*++s) ;
  11.   while(*s++ = *t++) ;
  12.   return(d);
  13.   }
  14.  
  15. ;
  16.     }
  17.   }
  18.  
  19.  
  20.  
  21. CCDECI, CCINCI, CCDDPI, CCPDPI, CCPINT, PINTè