diff options
author | ubq323 <ubq323@ubq323.website> | 2024-08-06 18:24:28 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-08-06 18:24:28 +0100 |
commit | a701883f4ea83022261304d225eb8225af52b302 (patch) | |
tree | d95127abc4cfa953653bdc550ebada0061678d16 /read.c | |
parent | 0cc8e1fd89aacd54926b61ac3b9c4a2810024b4a (diff) |
fix failing tests
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ static bool is_ws(char x) { return x == ' ' || x == '\t' || x == '\n';} static bool is_num(char x) { return '0' <= x && x <= '9'; } static bool is_special(char x) { switch(x) { - case '(': case ')': case '[': case ']': case '\'': case '"': + case '(': case ')': case '[': case ']': case '"': return true; break; default: return false; break; } |