home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / text / hyper / ADtoHT2_0.lha / MyLib.lha / string / stpcpy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-04  |  233 b   |  16 lines

  1. #include <string.h>
  2.  
  3. /**************************************************************************/
  4.  
  5. #undef stpcpy
  6.  
  7. char *stpcpy(char *Dest, const char *Source)
  8.  
  9. {
  10.   while ((*Dest=*Source++))
  11.     {
  12.       Dest++;
  13.     }
  14.   return Dest;
  15. }
  16.