Searched refs:orig_index (Results 1 – 1 of 1) sorted by relevance
462 size_t orig_index = 0; in replace_url_encoded_space_by_plus() local465 while(orig_index < orig_len) { in replace_url_encoded_space_by_plus()466 if((url[orig_index] == '%') && in replace_url_encoded_space_by_plus()467 (url[orig_index + 1] == '2') && in replace_url_encoded_space_by_plus()468 (url[orig_index + 2] == '0')) { in replace_url_encoded_space_by_plus()470 orig_index += 3; in replace_url_encoded_space_by_plus()473 if(new_index != orig_index) { in replace_url_encoded_space_by_plus()474 url[new_index] = url[orig_index]; in replace_url_encoded_space_by_plus()476 orig_index++; in replace_url_encoded_space_by_plus()
Completed in 7 milliseconds