Skip to content

Instantly share code, notes, and snippets.

@jeremyjs
Last active August 29, 2015 14:26
Show Gist options
  • Select an option

  • Save jeremyjs/de2bb2606831710c4f68 to your computer and use it in GitHub Desktop.

Select an option

Save jeremyjs/de2bb2606831710c4f68 to your computer and use it in GitHub Desktop.
if(urls[i][0]=='/' && urls[i][1]=='/' ) {
char* u1 = urls[i];
u1 += 2;
while(u1[0] != '/') {
u1++;
}
strcat(url2,u1);
}
else if(!urls[i][0]=='/') {
strcat(url2,"/");
strcat(url2,urls[i]);
}
else {
strcat(url2,urls[i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment