home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / STRCPY.C < prev    next >
Text File  |  1987-10-04  |  128b  |  10 lines

  1. /*
  2. ** copy t to s 
  3. */
  4. strcpy(s, t) char *s, *t; {
  5.   char *d;
  6.   d = s;
  7.   while (*s++ = *t++) ;
  8.   return(d);
  9.   }
  10.