0de7d30656
For some reason, C handles `==` before `&`. So `a & b == c` is the same thing as `a & (b == c)`.
For some reason, C handles `==` before `&`. So `a & b == c` is the same thing as `a & (b == c)`.