Skip to content
Snippets Groups Projects
  • jD91mZM2's avatar
    0de7d306
    Fix S_IS* · 0de7d306
    jD91mZM2 authored
    For some reason, C handles `==` before `&`.
    So `a & b == c` is the same thing as `a & (b == c)`.
    Verified
    0de7d306
    History
    Fix S_IS*
    jD91mZM2 authored
    For some reason, C handles `==` before `&`.
    So `a & b == c` is the same thing as `a & (b == c)`.