Lines Matching refs:next_percent
416 char *next_percent = input;
418 while (next_percent && !found) {
419 next_percent = strchr(next_percent, '%');
420 if (next_percent) {
422 while (next_percent[0] == '%' &&
423 next_percent[1] == '%')
424 next_percent += 2;
425 if (*next_percent == '%')
427 else if (*next_percent == '\0')
428 next_percent = NULL;
432 return next_percent;