pub unsafe extern "C" fn libpd_list(
    recv: *const c_char,
    argc: c_int,
    argv: *mut t_atom
) -> c_int
Expand description

send an atom array of a given length as a list to a destination receiver returns 0 on success or -1 if receiver name is non-existent ex: send [list 1 2 bar( to [r foo] on the next tick with: t_atom v[3]; libpd_set_float(v, 1); libpd_set_float(v + 1, 2); libpd_set_symbol(v + 2, “bar”); libpd_list(“foo”, 3, v);