Spyke
Amyreply
lemmy.sdf.org

There's always the classic C strcpy :)

char *strcpy(char *dest, char *src) {
    char *p = dest;
    while (*p++ = *src++);
    return dest;
}
14

You reached the end

For-loops in Java don't require any code in the body. I can't control what you do with that information. | Spyke