Browse Source

inp_search_closing_paren(), rewrite

pre-master-46
rlar 13 years ago
parent
commit
77478d8286
  1. 8
      src/frontend/inpcom.c

8
src/frontend/inpcom.c

@ -1792,14 +1792,14 @@ inp_search_closing_paren1(char *s)
{ {
int count = 1; int count = 1;
// assert(*s == '(') // assert(*s == '(')
while (*s != '\0') {
while (*s) {
s++; s++;
if (*s == '(') if (*s == '(')
count++; count++;
if (*s == ')') if (*s == ')')
count--; count--;
if (count == 0) if (count == 0)
break;
return s;
} }
if (count != 0) if (count != 0)
return NULL; return NULL;
@ -1812,14 +1812,14 @@ inp_search_for_closing_paren2(char *s)
{ {
int count = 0; int count = 0;
// assert(*s == '(') // assert(*s == '(')
while (*s != '\0') {
while (*s) {
if (*s == '(') if (*s == '(')
count++; count++;
if (*s == ')') if (*s == ')')
count--; count--;
s++; s++;
if (count == 0) if (count == 0)
break;
return s;
} }
if (count != 0) if (count != 0)
return NULL; return NULL;

Loading…
Cancel
Save