Skip to content

Instantly share code, notes, and snippets.

@adh
Created August 5, 2009 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adh/163041 to your computer and use it in GitHub Desktop.
Save adh/163041 to your computer and use it in GitHub Desktop.
static char* strneko(char* a, char* b){ // ^_^
char * s = stracat(a,b);
free(a);
free(b);
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment