Skip to content

Instantly share code, notes, and snippets.

@heliy
Created November 16, 2013 03:29
Show Gist options
  • Save heliy/7495553 to your computer and use it in GitHub Desktop.
Save heliy/7495553 to your computer and use it in GitHub Desktop.
K&R C 5.5 --It's just so beautiful :)
/*strcpy: copy t to s*/
void strcpy(char *s,char *t){
while((*s++=*t++))
;
}
@masinkatom
Copy link

THANKS! I rate this highly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment