nx_contentdiff_export.nx
buildroot/runtime/nx_contentdiff_export.nx
about
Complete, pinned missing-string inventory. String absence is evidence, not a capability verdict.
dependencies 2 imports · 0 importers
imports: nx_game_page_artifact_lib.nxnx_contentdiff_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
| none |
functions
| 4 | func cdx_digits(v: i64) -> i64 { var n: i64=1; var x: i64=v; while x>=10 { n=n+1; x=x/10 }; return n } |
| 5 | func cdx_num(out: *u8,p: i64,v: i64) -> i64 { let n: i64=cdx_digits(v); var i: i64=n; var x: i64=v; while i>0 { i=i-1; out[p+i]=(48+x%10) as u8; x=x/10 }; return p+n } |
| 6 | func cdx_text(out: *u8,p: i64,s: *u8) -> i64 { var i: i64=0; while s[i]!=0 as u8 { out[p+i]=s[i]; i=i+1 }; return p+i } called by 1: main |
| 7 | func cdx_class(a: *u8,i: i64,n: i64) -> *u8 |
| 13 | func main(argc: i64,argv: *i64) -> i64 |