home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / strcat.c < prev    next >
Text File  |  1979-12-31  |  384b  |  14 lines

  1. /*
  2. ** concatenate t to end of s 
  3. ** s must be large enough
  4. */
  5.   static char *xd;
  6.  
  7. strcat(s, t) char *s, *t; {
  8.   xd = s;
  9.   --s;
  10.   while (*++s) ;
  11.   while (*s++ = *t++) ;
  12.   return(xd);
  13.   }
  14.