mirror of
https://github.com/antoinevignau/source.git
synced 2025-01-20 02:30:40 +00:00
1 line
420 B
C
Executable File
1 line
420 B
C
Executable File
/***********************************************************************\
|
|
|
|
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);
|
|
}
|