Last active
August 29, 2015 14:26
-
-
Save jeremyjs/de2bb2606831710c4f68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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