mirror of
https://github.com/cc65/cc65.git
synced 2025-02-18 15:30:30 +00:00
9 lines
137 B
C
9 lines
137 B
C
#include <string.h>
|
|
|
|
char * __fastcall__
|
|
stpcpy (char * dst, const char * src)
|
|
{
|
|
strcpy (dst, src);
|
|
return dst + strlen (src);
|
|
}
|