antoine-source/appleworksgs/Spell/Src/STRECPY.C

1 line
420 B
C++
Raw Normal View History

2023-03-04 02:45:20 +00:00
/***********************************************************************\ 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); }