home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 221_01 / strcpy.c < prev    next >
Encoding:
Text File  |  1979-12-31  |  128 b   |  7 lines

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