![]() |
strcpy | Function (ROM Call 0x26C) |
string.h |
char *strcpy (char *dest, const char *src); |
Copies string src to dest.
strcpy copies string src to dest, stopping after the terminating null
character has been moved. Returns dest.
Note: If the objects pointed to by src and dest overlap in memory, the
behavior is undefined. strcpy assumes that src points to a buffer large enough to
hold dest.