Lines Matching defs:string
283 /* See if string has a "quoted part", and if so set *quoted_part to
285 * trailing quote, and set *string to point at the first character
288 * Otherwise set *quoted_part to NULL, and leave *string alone.
290 static void read_quoted(char **string, char **quoted_part)
292 char *strp = *string;
298 strp++; /* go along string until non-whitespace */
309 *strp = '\0'; /* end the string with a NUL */
312 *string = strp;
345 * because it hammers the passed in value, which can be a string
392 end the base URL string at the first single
415 by ending the string right at the last slash.