Lines Matching refs:strp
292 char *strp = *string;
297 while (apr_isspace(*strp)) {
298 strp++; /* go along string until non-whitespace */
301 if (*strp == '"') { /* if that character is a double quote */
302 strp++; /* step over it */
303 *quoted_part = strp; /* note where the quoted part begins */
305 while (*strp && *strp != '"') {
306 ++strp; /* skip the quoted portion */
309 *strp = '\0'; /* end the string with a NUL */
311 strp++; /* step over the last double quote */
312 *string = strp;