antoine-source/appleworksgs/Spell/Src/STRECPY.C
2023-03-04 03:45:20 +01:00

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);
}