home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / DLIBSSRC.ZIP / STRCPY.C < prev    next >
Encoding:
Text File  |  1987-06-14  |  281 b   |  15 lines

  1. char *strcpy(dest, source)
  2. register char *dest;
  3. register char *source;
  4. /*
  5.  *    Copies the <source> string to the <dest> including the '\0'.  A
  6.  *    pointer to the start of <dest> is returned.
  7.  */
  8. {
  9.     register char *p = dest;
  10.  
  11.     while(*dest++ = *source++)
  12.         ;
  13.     return(p);
  14. }
  15.