home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / STRCAT.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  256 b   |  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è