ti83-sdk/lib83/strcpy.c

10 lines
143 B
C
Raw Normal View History

2023-10-08 13:05:03 +00:00
#include <string.h>
char * strcpy (char * d, const char * from) {
register char * to = d;
while (*to++ = *from++);
return d;
}