gint/src/string/strcpy.c

12 lines
200 B
C

#include <string.h>
/*
strcpy()
Copies a string to another.
*/
char *strcpy(char *destination, const char *source)
{
size_t length = strlen(source);
return memcpy(destination, source, length);
}