diff options
-rw-r--r-- | 1-24_syntax-checker.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/1-24_syntax-checker.c b/1-24_syntax-checker.c index 239999f..019b9bc 100644 --- a/1-24_syntax-checker.c +++ b/1-24_syntax-checker.c @@ -46,7 +46,7 @@ int main() { escapes++; c = getchar(); // This does not detect all sequences; just the ones covered in Chapter 1. - if (c != '\\' || c != 't' || c != '\'' || c != '"' || c != 'n' || c != 'b' || c != '0') { + if (c != '\\' && c != 't' && c != '\'' && c != '"' && c != 'n' && c != 'b' && c != '0') { break; } else { escapes--; @@ -57,11 +57,11 @@ int main() { if (singqs > 0 || dubqs > 0) { break; } - linenr += 1; + linenr++; } // Parentheses if (c == '(') { - parens += 1; + parens++; } if (c == ')') { parens -= 1; @@ -71,7 +71,7 @@ int main() { } // Brackets if (c == '[') { - brackets += 1; + brackets++; } if (c == ']') { brackets--; |