[...]Use a space after keywords (if, while, for, return, switch). No braces are used for control statements with zero or only a single statement unless that statement is more than a single line, in which case they are permitted.[0]
As I look, GNU guide is less specific, but examples[1] show the same style.The good thing is that -Wmisleading-indentation [2] (comes along with -Wall) catches this indentation error.
[0] https://man.openbsd.org/style - happens to be same for at least NetBSD.
[1] https://www.gnu.org/prep/standards/html_node/Syntactic-Conve...
However, it's bad. I much prefer the rare, elusive, postfix if:
goto fail if (condition);
It can create some very readable code when used right, with short and simple conditionals.Or comments such as: https://github.com/apple-oss-distributions/Security/blob/rel...
Unsurprisingly, given BoringSSL doesn't have a stable API (yet alone ABI), it isn't exposed as a system library.