home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 221_01 / strcpy.c < prev    next >
Text File  |  1979-12-31  |  128b  |  7 lines

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