code wiki / _hdl_build / nx_manga_sites_gate.nx

nx_manga_sites_gate.nx

buildroot/runtime/_hdl_build/nx_manga_sites_gate.nx

7672 B110 linesdepth 4pulls 6 transitivereach 0 importersview sourcekind gate/prooftopic manga
docsdependenciesstructsconstsfunctions

dependencies 5 imports · 0 importers

nx_gate_grow.nx nx_gate_gn.nx nx_gate_base.nx nx_syscalls.nx nx_manga_sites.nx nx_manga_sites_gate.nx

imports: nx_gate_grow.nxnx_gate_gn.nxnx_gate_base.nxnx_syscalls.nxnx_manga_sites.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main gw sys_write grow gw sys_write ↻ sys_mmap g_slen g_streq na_json_str na_key_end sys_mmap ↻ na_find_from na_ws gn g_nth na_html_title na_find_ci na_lc na_find_from ↻ na_char_from na_ent_len na_ent_is na_ent_byte na_ent_is ↻ sys_exit

structs

none

consts

none

functions

17func gw(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
called by 1: main calls 1: sys_write
18func g_streq(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 1} return 0 }
called by 1: main
19func g_nth(url_buf: *u8, offs: *i64, lens: *i64, idx: i64, out: *u8) -> i64 { let bp: *u8=((url_buf as i64)+offs[idx]) as *u8; var k: i64=0; while k<lens[idx]{out[k]=bp[k];k=k+1} out[lens[idx]]=0 as u8; return lens[idx] }
called by 1: main
21func main() -> i64