pub fn par_list_wordcode(cmplx: &mut i32)Expand description
Port of par_list(int *cmplx) from Src/parse.c:769-803.
list : { SEPER } [ sublist [ { SEPER | AMPER | AMPERBANG } list ] ].
True line-by-line port: takes cmplx: &mut i32 matching C’s
int *cmplx out-parameter, uses stack-local c per iteration
like C (so inner sublist cmplx is independent of outer).