home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / c / strpcpy < prev    next >
Text File  |  1992-07-21  |  279b  |  16 lines

  1. /*      > C.Strpcpy     - copy a string, returning a pointer to the end */
  2.  
  3. #include <ctype.h>
  4. #include "utils.h"
  5.  
  6. char *strpcpy (char *s, const char *t)
  7. {
  8.         while ( ( *s = *t ) != '\0' )
  9.         {
  10.                 ++s;
  11.                 ++t;
  12.         }
  13.  
  14.         return (s);
  15. }
  16.