Skip to content

Instantly share code, notes, and snippets.

@unknowntpo
Created February 18, 2020 05:57
Show Gist options
  • Save unknowntpo/ff9616ddd02f26ee3882fd29f11064dd to your computer and use it in GitHub Desktop.
Save unknowntpo/ff9616ddd02f26ee3882fd29f11064dd to your computer and use it in GitHub Desktop.
Most beautiful strcpy.c
/* copy t to s ; pointer version 1 */
void strcpy(char *s, char *t) {
while (*s++ = *t++)
;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment