Lines Matching refs:iptr
150 const unsigned char *iptr;
157 for(iptr = (unsigned char *)url; /* read from here */
158 len; iptr++, len--) {
160 if(iptr < host_sep) {
161 result = Curl_dyn_addn(o, iptr, 1);
167 if(*iptr == ' ') {
177 if(*iptr == '?')
180 if(urlchar_needs_escaping(*iptr)) {
182 out[1] = hexdigits[*iptr>>4];
183 out[2] = hexdigits[*iptr & 0xf];
187 result = Curl_dyn_addn(o, iptr, 1);