stl.output_charΒΆ
ascii is a constant. The macro outputs the byte (ascii & 0xff)
SignatureΒΆ
def output_char ascii { ... }
Defined in runlib.fj β lines 159β161 (view on GitHub).
ComplexityΒΆ
Time:
8Space:
8
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def output_char ascii {
rep(8, i) .output_bit (ascii>>i)&1
}
β Previous: stl.output_bit
Next: stl.output β