Lines Matching defs:param
43 static const char *unslashquote(const char *line, char *param);
126 char *param;
176 param = malloc(strlen(line) + 1); /* parameter */
177 if(!param) {
184 (void)unslashquote(line, param);
187 param = line; /* parameter starts here */
212 if(!*param)
215 param = NULL;
219 fprintf(stderr, "PARAM: \"%s\"\n",(param ? param : "(null)"));
221 res = getparameter(option, param, &usedarg, global, operation);
223 if(!res && param && *param && !usedarg)
269 Curl_safefree(param);
283 * Copies the string from line to the buffer at param, unquoting
286 * end of the input string. param must be at least as long as the input
289 static const char *unslashquote(const char *line, char *param)
313 *param++ = out;
317 *param++ = *line++;
319 *param = '\0'; /* always zero terminate */