/***********************************************************************\ Filename: strecpy.c \***********************************************************************/ #include "proxlib.h" /* Copy source into dest and return a pointer to the end of the new version of dest. */ UCHAR * strecpy(dest, source) register UCHAR *dest; register UCHAR *source; { while (*dest++ = *source++) ; return (--dest); }