nx_compare_ladder_capture.nx
buildroot/runtime/nx_compare_ladder_capture.nx
about
Test-only staged matrix capture. No source edits or index publication.
WARNING: matrix HTML rendering can refresh public reference assets via rp_publish.
Do not run against the real tree without accepting that existing emitter side effect.
args: <unique-output-stem> <capture-bytes> <timeout-ms> <html|json>; all limits are caller supplied.
dependencies 2 imports · 0 importers
imports: nx_tool_run.nxnx_itoa_lib.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| 7 | const CRM_I64_MAX: i64 = 9223372036854775807 |
| 8 | const CRM_PATH_CAP: i64 = 512 |
functions
| 9 | func crm_out(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return sys_write(1, s, n) } called by 1: main |
| 10 | func crm_equal(a: *u8, b: *u8) -> i64 { var i: i64 = 0; while a[i] != (0 as u8) { if a[i] != b[i] { return 0 }; i = i + 1 }; if b[i] != (0 as u8) { return 0 }; return 1 } called by 1: main |
| 11 | func crm_decimal(s: *u8) -> i64 called by 1: main |
| 23 | func crm_append(p: *u8, at: i64, s: *u8) -> i64 called by 1: main |
| 29 | func main(argc: i64, argv: *i64) -> i64 |