/development/gui/chocolatecastle/source/libvstring/strcopy.c
https://repo.or.cz/AROS-Contrib.git · C · 12 lines · 6 code · 5 blank · 1 comment · 1 complexity · 52aecff43aefc69a3dadf9895980755a MD5 · raw file
- /* libvstring/strcopy.c */
- #include "libvstring.h"
- STRPTR StrCopy(STRPTR s, STRPTR d)
- {
- while (*d++ = *s++);
- return (--d);
- }