home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / string / strcat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-29  |  227 b   |  13 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <string.h>
  3.  
  4. char *
  5. strcat(char *s, const char *append)
  6. {
  7.   char *save = s;
  8.  
  9.   for (; *s; ++s);
  10.   while ((*s++ = *append++));
  11.   return save;
  12. }
  13.