|
|
|
|
|
by kindfellow92
3130 days ago
|
|
Oof, all the macros are broken: #define is_space(x) (x == ' ' || x == '\n')
#define is_parens(x) (x == '(' || x == ')')
Should be #define is_space(x) ((x) == ' ' || (x) == '\n')
#define is_parens(x) ((x) == '(' || (x) == ')')
Probably doesn’t matter in practice for this. It could end up being a nasty source of bug later on in the project. |
|