Merge pull request #2464 from SvenMichaelKlose/stpcpy

Add stpcpy().
This commit is contained in:
Bob Andrews
2024-07-16 01:47:11 +02:00
committed by GitHub
3 changed files with 52 additions and 0 deletions

7
libsrc/common/stpcpy.c Normal file
View File

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