1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-20 14:29:03 +00:00
cc65/libsrc/common/stpcpy.c

8 lines
137 B
C
Raw Normal View History

#include <string.h>
char * __fastcall__ stpcpy (char * dst, const char * src)
{
strcpy (dst, src);
return dst + strlen (src);
}