this post was submitted on 12 Jun 2023
28 points (100.0% liked)

Programmer Humor

32031 readers
1000 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Reposting this abomination from my Reddit Account because this is important information. Uncle Bob would be proud.

you are viewing a single comment's thread
view the rest of the comments
[–] lwhjp@lemmy.sdf.org 4 points 1 year ago

There's always the classic C strcpy :)

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