Searched refs:orig_index (Results 1 – 1 of 1) sorted by relevance
458 size_t orig_index = 0; in replace_url_encoded_space_by_plus() local461 while(orig_index < orig_len) { in replace_url_encoded_space_by_plus()462 if((url[orig_index] == '%') && in replace_url_encoded_space_by_plus()463 (url[orig_index + 1] == '2') && in replace_url_encoded_space_by_plus()464 (url[orig_index + 2] == '0')) { in replace_url_encoded_space_by_plus()466 orig_index += 3; in replace_url_encoded_space_by_plus()469 if(new_index != orig_index) { in replace_url_encoded_space_by_plus()470 url[new_index] = url[orig_index]; in replace_url_encoded_space_by_plus()472 orig_index++; in replace_url_encoded_space_by_plus()
Completed in 10 milliseconds