Lines Matching refs:next
414 char *next;
428 if ( (next = find_right_paren( str )) == NULL )
431 *next = '\0';
434 *next++ = ')';
440 return( next );
446 char *next;
522 next = str;
523 while ( *next && balance ) {
525 if ( *next == '(' )
527 else if ( *next == ')' )
530 if ( *next == '\\' && ! escape )
535 next++;
540 *next = '\0';
544 *next++ = ')';
545 str = next;
567 next = strchr( str, '\0' );
571 str = next;
587 char *next;
598 if ( (next = find_right_paren( str + 1 )) == NULL )
600 save = *++next;
603 *next = '\0';
606 *next = save;
608 str = next;