Lines Matching defs:param
44 static const char *unslashquote(const char *line, char *param);
124 char *param;
182 param = malloc(strlen(line) + 1); /* parameter */
183 if(!param) {
189 (void)unslashquote(line, param);
192 param = line; /* parameter starts here */
218 if(!*param)
221 param = NULL;
225 fprintf(tool_stderr, "PARAM: \"%s\"\n",(param ? param : "(null)"));
227 res = getparameter(option, param, NULL, &usedarg, global, operation);
230 if(!res && param && *param && !usedarg)
273 Curl_safefree(param);
291 * Copies the string from line to the buffer at param, unquoting
294 * end of the input string. param must be at least as long as the input
297 static const char *unslashquote(const char *line, char *param)
321 *param++ = out;
325 *param++ = *line++;
327 *param = '\0'; /* always null-terminate */