code wiki / (root) / nx_url_parse_test.nx

nx_url_parse_test.nx

buildroot/runtime/nx_url_parse_test.nx

1318 B26 linesdepth 4pulls 5 transitivereach 0 importersview sourcekind gate/prooftopic url
docsdependenciesstructsconstsfunctions

about

nx_url_parse_test.nx -- does nx_url_parse keep the PATH when the URL has an explicit :8443 port? If path is mangled, my route tests were invalid.

dependencies 2 imports · 0 importers

nx_syscalls.nx nx_url.nx nx_url_parse_test.nx

imports: nx_syscalls.nxnx_url.nx

imported by: nobody (leaf or entry point)

structs

none

consts

none

functions

6func up_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
calls 1: sys_write
7func up_wr(p: *u8, n: i64) -> i64 { if n > 0 { sys_write(1, p, n) } return 0 }
calls 1: sys_write
8func up_putn(v: i64) -> i64
17func main() -> i64