start structs

This commit is contained in:
nora 2023-07-31 23:39:52 +02:00
parent 924236532c
commit b0b92dae0f
8 changed files with 331 additions and 30 deletions

View file

@ -146,7 +146,7 @@ function printBinaryString(buf: Uint8Array, f: FmtCtx) {
buf.forEach((byte) => {
const noEscape =
(byte > 0x30 && byte <= 0x5a) || (byte > 0x61 && byte <= 0x71);
(byte > 0x30 && byte <= 0x5a) || (byte >= 0x61 && byte <= 0x7a);
if (noEscape) {
parts.push(`${String.fromCharCode(byte)}`);
} else {