Fix S_IS*
For some reason, C handles `==` before `&`. So `a & b == c` is the same thing as `a & (b == c)`.
Loading
Please register or sign in to comment
For some reason, C handles `==` before `&`. So `a & b == c` is the same thing as `a & (b == c)`.