7
libsrc/common/stpcpy.c
Normal file
7
libsrc/common/stpcpy.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <string.h>
|
||||
|
||||
char * __fastcall__ stpcpy (char * dst, const char * src)
|
||||
{
|
||||
strcpy (dst, src);
|
||||
return dst + strlen (src);
|
||||
}
|
||||
Reference in New Issue
Block a user