Lines Matching refs:next_percent
409 char *next_percent = input;
411 while (next_percent && !found) {
412 next_percent = strchr(next_percent, '%');
413 if (next_percent) {
415 while (next_percent[0] == '%' &&
416 next_percent[1] == '%')
417 next_percent += 2;
418 if (*next_percent == '%')
420 else if (*next_percent == '\0')
421 next_percent = NULL;
425 return next_percent;