inp_search_closing_paren(), rewrite
This commit is contained in:
parent
77478d8286
commit
ff2e850f1c
|
|
@ -1801,9 +1801,8 @@ inp_search_closing_paren1(char *s)
|
|||
if (count == 0)
|
||||
return s;
|
||||
}
|
||||
if (count != 0)
|
||||
return NULL;
|
||||
return s;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1821,9 +1820,8 @@ inp_search_for_closing_paren2(char *s)
|
|||
if (count == 0)
|
||||
return s;
|
||||
}
|
||||
if (count != 0)
|
||||
return NULL;
|
||||
return s;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue