Fixtype of printer options.
This is a product type introduced by fty::defprod.
This fixtype collects options that control various aspects of how the C code is printed.
Currently we support the following options:
a ? b ? c : d : e ? f gshould be printed as
a ? (b ? c : e) : (e ? f : g)The two expressions are equivalent due to the precedence rules of C, but the second one is more readable. If the flag is
We may add more options in the future.