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
// ae - takes URL, puts percents in it. | |
void encodeUrl(char *out, int outSize, char *in, int inSize) | |
{ | |
// Terminate our buffer | |
out[0] = '\0'; | |
// Loop the input | |
for (int i = 0; i < inSize; i++) | |
{ | |
// Get a char out of it |