/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

  1. /* libvstring/strcopy.c */
  2. #include "libvstring.h"
  3. STRPTR StrCopy(STRPTR s, STRPTR d)
  4. {
  5. while (*d++ = *s++);
  6. return (--d);
  7. }